mirror of
https://github.com/iandinwoodie/cpp-design-patterns-for-humans.git
synced 2025-12-16 20:17:08 +03:00
17 lines
231 B
Makefile
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
|