From 1ce955ec36f775d8fde2cb9d7943178e8b9d60da Mon Sep 17 00:00:00 2001 From: Devan Goodwin Date: Tue, 2 Oct 2007 21:42:47 -0300 Subject: Moved code under the func namespace. Previously we had overlord, minion, modules, and func all at the root of the source tree. After install these would all be shuffled below func. Relocated them in the source tree to reflect this. --- func/overlord/Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 func/overlord/Makefile (limited to 'func/overlord/Makefile') diff --git a/func/overlord/Makefile b/func/overlord/Makefile new file mode 100755 index 0000000..f2bc6c4 --- /dev/null +++ b/func/overlord/Makefile @@ -0,0 +1,18 @@ + + +PYFILES = $(wildcard *.py) + +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 -- cgit