GRRLIB/examples/Makefile

12 lines
313 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; \
done;