GRRLIB/examples/Makefile

13 lines
314 B
Makefile
Raw Normal View History

2019-01-23 16:26:45 +00:00
MAKEFILES := $(shell find . -mindepth 2 -maxdepth 2 -name Makefile)
2009-02-13 20:44:54 +00:00
all:
2019-01-23 16:26:45 +00: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 16:26:45 +00:00
@for i in $(MAKEFILES); do \
$(MAKE) -C `dirname $$i` clean || exit 1; \
2021-06-26 17:14:43 +00:00
done;