mirror of
https://github.com/iandinwoodie/cpp-design-patterns-for-humans.git
synced 2025-12-17 04:24:40 +03:00
10 lines
100 B
Makefile
10 lines
100 B
Makefile
all: examples
|
|
|
|
examples:
|
|
$(MAKE) -C $@
|
|
|
|
clean:
|
|
$(MAKE) -C examples $@
|
|
|
|
.PHONY: all examples clean
|