1
0
Fork 0
mirror of https://github.com/GRRLIB/GRRLIB.git synced 2025-03-21 02:18:59 +00:00
GRRLIB/examples/Makefile
2019-01-23 11:26:45 -05:00

12 lines
No EOL
313 B
Makefile

MAKEFILES := $(shell find . -mindepth 2 -maxdepth 2 -name Makefile)
all:
@for i in $(MAKEFILES); do \
echo "-----------------------------------------------------------"; \
$(MAKE) -C `dirname $$i` || exit 1; \
done;
clean:
@for i in $(MAKEFILES); do \
$(MAKE) -C `dirname $$i` clean || exit 1; \
done;