diff options
-rw-r--r-- | share/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/share/Makefile b/share/Makefile index a7a208d..639324d 100644 --- a/share/Makefile +++ b/share/Makefile @@ -8,12 +8,14 @@ #--------------------------------------------------------------- MAN=../man/C/mseclib.3 +PFILES=Config.py ConfigFile.py Log.py Perms.py compile.py draksec_help.py libmsec.py man.py all: mseclib.py compile man help.pm compile: ./compile.py '/usr/share/msec/' *.py rm -f msec.pyo + @for f in $(PFILES); do if grep -q print $$f; then echo "print statement in $$f:"; grep -Hn print $$f; exit 1; fi; done mseclib.py: libmsec.py shadow.py rm -f $@ |