2
0
mirror of https://gitlab.com/apparmor/apparmor synced 2025-08-22 18:17:09 +00:00

This patch fixes up a bit that leaked into kees' commit rev 1727

to support a top level make clean target.
This commit is contained in:
Steve Beattie 2011-05-23 16:05:10 -07:00
parent e66e56b020
commit 12876afa07
4 changed files with 21 additions and 4 deletions

View File

@ -10,10 +10,6 @@ DIRS=parser \
changehat/libapparmor \ changehat/libapparmor \
changehat/mod_apparmor \ changehat/mod_apparmor \
changehat/pam_apparmor \ changehat/pam_apparmor \
management/apparmor-dbus \
management/applets/apparmorapplet-gnome \
management/yastui \
common \
tests tests
REPO_URL?=lp:apparmor REPO_URL?=lp:apparmor

7
tests/Makefile Normal file
View File

@ -0,0 +1,7 @@
SUBDIRS=regression stress
.PHONY: clean
clean:
for dir in $(SUBDIRS) ; do \
make clean -C $${dir} ; \
done

View File

@ -0,0 +1,7 @@
SUBDIRS=apparmor
.PHONY: clean
clean:
for dir in $(SUBDIRS) ; do \
make clean -C $${dir} ; \
done

7
tests/stress/Makefile Normal file
View File

@ -0,0 +1,7 @@
SUBDIRS=subdomain
.PHONY: clean
clean:
for dir in $(SUBDIRS) ; do \
make clean -C $${dir} ; \
done