blob: 5a6fc63e296d2b3b069e58fcbe50b3306fea9a1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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: force
force :;
|