summaryrefslogtreecommitdiffstats
path: root/func/minion
diff options
context:
space:
mode:
authorAdrian Likins <alikins@grimlock.devel.redhat.com>2008-03-04 17:54:53 -0500
committerAdrian Likins <alikins@grimlock.devel.redhat.com>2008-03-04 17:54:53 -0500
commit1afe5b3bd97d292ab4c024ee7c434d036cb5db9d (patch)
tree9d80a010e4162dfe0f0ed58df813435150c77e5c /func/minion
parent33ce5a294db93d58374b964425e91e64ab2a1458 (diff)
downloadthird_party-func-1afe5b3bd97d292ab4c024ee7c434d036cb5db9d.tar.gz
third_party-func-1afe5b3bd97d292ab4c024ee7c434d036cb5db9d.tar.xz
third_party-func-1afe5b3bd97d292ab4c024ee7c434d036cb5db9d.zip
make "make clean" even cleanier.
try to hit up more of the subdirs, etc, when running "make clean"
Diffstat (limited to 'func/minion')
-rwxr-xr-xfunc/minion/Makefile4
-rwxr-xr-xfunc/minion/modules/Makefile2
2 files changed, 3 insertions, 3 deletions
diff --git a/func/minion/Makefile b/func/minion/Makefile
index d630382..be4d3af 100755
--- a/func/minion/Makefile
+++ b/func/minion/Makefile
@@ -1,4 +1,4 @@
-
+DIRS = modules
PYFILES = $(wildcard *.py)
PYDIRS = modules
@@ -10,7 +10,7 @@ clean::
@rm -fv *.pyc *~ .*~ *.pyo
@find . -name .\#\* -exec rm -fv {} \;
@rm -fv *.rpm
-
+ -for d in $(DIRS); do ($(MAKE) -C $$d clean ); done
pychecker::
@$(PYCHECKER) $(PYFILES) || exit 0
diff --git a/func/minion/modules/Makefile b/func/minion/modules/Makefile
index f2bc6c4..64c9c5c 100755
--- a/func/minion/modules/Makefile
+++ b/func/minion/modules/Makefile
@@ -9,7 +9,7 @@ clean::
@rm -fv *.pyc *~ .*~ *.pyo
@find . -name .\#\* -exec rm -fv {} \;
@rm -fv *.rpm
-
+ -for d in $(DIRS); do ($(MAKE) -C $$d clean ); done
pychecker::
@$(PYCHECKER) $(PYFILES) || exit 0