~launchpad-pqm/launchpad/devel

809 by Canonical.com Patch Queue Manager
Nuke some arch-tags
1
test_dirs:=$(shell find . -maxdepth 1 -mindepth 1 -name ".arch-ids" -prune -o -type d -print)
2
3
all:
4
5
check: build
6
	#@ for subdir in ${test_dirs}; do \
7
	#	$(MAKE) -C $$subdir check || exit $$?;\
8
	#done
9
10
build:
11
	@ for subdir in ${test_dirs}; do\
12
		if [ -e $$subdir/Makefile ]; then\
13
			$(MAKE) -C $$subdir || exit $$?;\
14
		fi\
15
	done
16
17
.PHONY: check all build
18
19