summaryrefslogtreecommitdiffstats
path: root/certmaster/minion/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'certmaster/minion/Makefile')
-rwxr-xr-xcertmaster/minion/Makefile24
1 files changed, 0 insertions, 24 deletions
diff --git a/certmaster/minion/Makefile b/certmaster/minion/Makefile
deleted file mode 100755
index d630382..0000000
--- a/certmaster/minion/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-PYFILES = $(wildcard *.py)
-PYDIRS = modules
-
-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