summaryrefslogtreecommitdiffstats
path: root/func/Makefile
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/Makefile
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/Makefile')
-rwxr-xr-xfunc/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/func/Makefile b/func/Makefile
index 99fd546..e1ce0e7 100755
--- a/func/Makefile
+++ b/func/Makefile
@@ -1,4 +1,5 @@
+DIRS = minion overlord
PYFILES = $(wildcard *.py)
PYDIRS = minion overlord
@@ -10,7 +11,8 @@ 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