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
|
PYTHON=python
# Not all packages have a working Makefile. Work around this by hardcoding
# the ones we test. If we fix them all to have EITHER a good makefile
# (build and check targets work), or no makefile we can reenable auto
# detection.
build_dirs:=cscvs dulwich pygettextpo pygpgme subvertpy
test_dirs:=cscvs pygettextpo
TEST_ENV_VARS = PYTHON=$(PYTHON)
all:
check: build
@ for subdir in ${test_dirs}; do \
$(MAKE) -C $$subdir check $(TEST_ENV_VARS) || exit $$?;\
done
build:
@ for subdir in ${build_dirs}; do\
if [ -e $$subdir/Makefile ]; then\
$(MAKE) -C $$subdir $(TEST_ENV_VARS) || exit $$?;\
fi;\
done
clean:
@ for subdir in ${build_dirs}; do\
if [ -e $$subdir/Makefile ]; then\
(cd $$subdir && bzr clean-tree --ignored --force) || exit $$?;\
fi;\
done
.PHONY: check all build clean
|