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

all: $(SUBDIRS)

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

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


.PHONY: all $(SUBDIRS)