summaryrefslogtreecommitdiff
path: root/Makefile
blob: 4e4a02da4bcba9bdcf9cfd47cac9f9671ff2de5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
SUBDIRS=data scripts tests

recursive=all clean install

all:

$(recursive):
	@target=$@ ; \
	for subdir in $(SUBDIRS); do \
		echo "Making $$target in $$subdir" ; \
		$(MAKE) -C $$subdir $$target; \
	done