1
0
Fork 0
mirror of https://github.com/GRRLIB/GRRLIB.git synced 2025-03-16 08:46:54 +00:00
GRRLIB/examples/Makefile
2021-06-26 13:14:43 -04:00

12 lines
314 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;