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