summaryrefslogtreecommitdiffstats
path: root/certmaster/minion/Makefile
diff options
context:
space:
mode:
authorAdrian Likins <root@grimlock.devel.redhat.com>2008-03-17 17:10:32 -0400
committerroot <root@grimlock.devel.redhat.com>2008-03-17 17:10:32 -0400
commitaf4f09f155f4a4f1c5a9e3e29b4c8736f892dce4 (patch)
tree7b15cd3d6dae2e1940b5cdebbdffa12bc1474fde /certmaster/minion/Makefile
parent6146feb4b676ba7e10f5f175bb50149c20c53b18 (diff)
downloadcertmaster-af4f09f155f4a4f1c5a9e3e29b4c8736f892dce4.tar.gz
certmaster-af4f09f155f4a4f1c5a9e3e29b4c8736f892dce4.tar.xz
certmaster-af4f09f155f4a4f1c5a9e3e29b4c8736f892dce4.zip
remove unused certmaster/minion/ and certmaster/overlord/ dirs
update spec and setup accordingly
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