Files
cpp-design-patterns-for-humans/examples/Makefile
2019-05-19 17:42:16 -04:00

17 lines
231 B
Makefile

dirs= $(wildcard */.)
cleandirs= $(dirs:%=clean-%)
all: $(dirs)
$(dirs):
$(MAKE) -C $@
clean: $(cleandirs)
$(cleandirs):
$(MAKE) -C $(@:clean-%=%) clean
.PHONY: subdirs $(dirs)
.PHONY: subdirs $(cleandirs)
.PHONY: all clean