summaryrefslogtreecommitdiff
path: root/Makefile
blob: 28cfaefac79d2b065dd98593c28b84e56091e205 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
SUBDIRS=src

all-recursive clean-recursive:
	target=`echo $@ | sed s/-recursive//`;		\
	for subdir in $(SUBDIRS); do 			\
		(cd $$subdir && make "$$target")	\
	done;

all: all-recursive

clean: clean-recursive
	rm -f *~