1
0
Fork 0
mirror of https://github.com/GRRLIB/GRRLIB.git synced 2025-03-24 03:39:00 +00:00
GRRLIB/examples/Makefile

13 lines
314 B
Makefile
Raw Normal View History

2019-01-23 11:26:45 -05:00
MAKEFILES := $(shell find . -mindepth 2 -maxdepth 2 -name Makefile)
2009-02-13 20:44:54 +00:00
all:
2019-01-23 11:26:45 -05:00
@for i in $(MAKEFILES); do \
echo "-----------------------------------------------------------"; \
$(MAKE) -C `dirname $$i` || exit 1; \
done;
2009-02-13 20:44:54 +00:00
clean:
2019-01-23 11:26:45 -05:00
@for i in $(MAKEFILES); do \
$(MAKE) -C `dirname $$i` clean || exit 1; \
2021-06-26 13:14:43 -04:00
done;