summaryrefslogtreecommitdiffstats
path: root/func/Makefile
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2008-02-07 12:08:55 -0500
committerMichael DeHaan <mdehaan@redhat.com>2008-02-07 12:08:55 -0500
commit697402da24ca930b3608359a61b9872fdddc62d9 (patch)
tree625403025dbfe9caca1254aab45724c8de4d8302 /func/Makefile
parentac3061bcffd2ea634596c188beaa13339e3fa24a (diff)
downloadfunc-697402da24ca930b3608359a61b9872fdddc62d9.tar.gz
func-697402da24ca930b3608359a61b9872fdddc62d9.tar.xz
func-697402da24ca930b3608359a61b9872fdddc62d9.zip
Starting off the certmaster tree with most of the func code, shortly non-certmaster related parts will be removed, and other small parts added/tweaked
Diffstat (limited to 'func/Makefile')
-rwxr-xr-xfunc/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/func/Makefile b/func/Makefile
new file mode 100755
index 0000000..99fd546
--- /dev/null
+++ b/func/Makefile
@@ -0,0 +1,24 @@
+
+
+PYFILES = $(wildcard *.py)
+PYDIRS = minion overlord
+
+PYCHECKER = /usr/bin/pychecker
+PYFLAKES = /usr/bin/pyflakes
+
+clean::
+ @rm -fv *.pyc *~ .*~ *.pyo
+ @find . -name .\#\* -exec rm -fv {} \;
+ @rm -fv *.rpm
+
+
+pychecker::
+ @$(PYCHECKER) $(PYFILES) || exit 0
+
+pyflakes::
+ @$(PYFLAKES) $(PYFILES) || exit 0
+
+pychecker::
+ -for d in $(PYDIRS); do ($(MAKE) -C $$d pychecker ); done
+pyflakes::
+ -for d in $(PYDIRS); do ($(MAKE) -C $$d pyflakes ); done