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