summaryrefslogtreecommitdiff
path: root/src/Makefile
blob: 7f8dfd09cd89f2e1ec86c2f0473c4b1aadbf5616 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# src/Makefile

TOP = ..

include $(TOP)/configs/current

SUBDIRS = $(SRC_DIRS)


default: $(LIB_DIR) subdirs


subdirs:
	@for dir in $(SUBDIRS) ; do \
		if [ -d $$dir ] ; then \
			pushd $$dir ; \
			make ; \
			popd ; \
		fi \
	done


$(LIB_DIR):
	-mkdir $(LIB_DIR)


clean:
	@for dir in $(SUBDIRS) ; do \
		if [ -d $$dir ] ; then \
			pushd $$dir ; \
			make clean ; \
			popd ; \
		fi \
	done