summaryrefslogtreecommitdiffstats
path: root/func/Makefile
diff options
context:
space:
mode:
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