7 lines
74 B
Makefile
7 lines
74 B
Makefile
dirs = src doc
|
|
|
|
.PHONY: all $(dirs)
|
|
|
|
all: $(dirs)
|
|
$(dirs):
|
|
$(MAKE) -C $@
|