aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 891daf7fa80626775f39a4ba6b2d61cd0fc8a1a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SUBDIRS := $(wildcard model*/. example*/.)

all: $(SUBDIRS)

$(SUBDIRS):
	$(MAKE) -C $@

clean:
	for dir in $(SUBDIRS); do \
		$(MAKE) -C $$dir clean; \
	done


.PHONY: all $(SUBDIRS)