wut/samples/make/Makefile

10 lines
283 B
Makefile
Raw Normal View History

2019-04-09 19:01:33 +10:00
MAKEFILES := $(shell find . -mindepth 2 -name Makefile)
DATESTRING := $(shell date +%Y)$(shell date +%m)$(shell date +%d)
all:
@for i in $(MAKEFILES); do $(MAKE) -C `dirname $$i` || exit 1; done;
clean:
@for i in $(MAKEFILES); do $(MAKE) -C `dirname $$i` clean || exit 1; done;