mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-12 19:02:20 +00:00
12 lines
314 B
Makefile
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;
|