summaryrefslogtreecommitdiff
path: root/other/Kermit/Makefile
blob: 71a5198900ff3b39f51179c5c317e8ce4406f054 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# written by palmers / teso
SUBDIRS = include lib src doc

all:
	for x in $(SUBDIRS); do \
		make -C $$x; \
	done

clean:
	for x in $(SUBDIRS); do \
		make -C $$x clean; \
	done