mirror of
https://github.com/AntonioND/nitro-engine.git
synced 2025-06-18 08:35:44 -04:00
26 lines
492 B
Makefile
26 lines
492 B
Makefile
# SPDX-License-Identifier: CC0-1.0
|
|
#
|
|
# SPDX-FileContributor: Antonio Niño Díaz, 2023
|
|
|
|
.PHONY: all clean
|
|
|
|
MAKE := make
|
|
|
|
all:
|
|
@for i in `ls`; do \
|
|
if test -e $$i/Makefile.blocksds ; then \
|
|
cd $$i; \
|
|
$(MAKE) -f Makefile.blocksds --no-print-directory || { exit 1;}; \
|
|
cd ..; \
|
|
fi; \
|
|
done;
|
|
|
|
clean:
|
|
@for i in `ls`; do \
|
|
if test -e $$i/Makefile.blocksds ; then \
|
|
cd $$i; \
|
|
$(MAKE) -f Makefile.blocksds clean --no-print-directory || { exit 1;}; \
|
|
cd ..; \
|
|
fi; \
|
|
done;
|