aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: b82c77b2b83654bca126c708db2a44c2cd042bec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
SUBDIRS = common python python-twisted python-tornado

.PHONY: all test
all test: $(SUBDIRS)

all: TARG=all
test: TARG=test

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

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

.PHONY: force
force :;