mirror of
https://gitlab.science.ru.nl/mthesis-edeboone/m.internship-documentation.git
synced 2024-11-10 01:33:30 +01:00
8 lines
122 B
Makefile
8 lines
122 B
Makefile
|
SUBDIRS := $(subst Makefile,,$(wildcard */Makefile))
|
||
|
|
||
|
all: $(SUBDIRS)
|
||
|
$(SUBDIRS):
|
||
|
@$(MAKE) -C $@
|
||
|
|
||
|
.PHONY: all $(SUBDIRS)
|