diff options
Diffstat (limited to 'share/Makefile')
-rw-r--r-- | share/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/share/Makefile b/share/Makefile new file mode 100644 index 0000000..b295135 --- /dev/null +++ b/share/Makefile @@ -0,0 +1,27 @@ +#--------------------------------------------------------------- +# Project : Mandrake Linux +# Module : share +# File : Makefile +# Version : $Id$ +# Author : Frederic Lepied +# Created On : Sat Jan 26 20:17:55 2002 +#--------------------------------------------------------------- + +all: mseclib.py compile + +compile: + ./compile.py '/usr/share/msec/' *.py + rm -f msec.pyo + +mseclib.py: libmsec.py shadow.py + rm -f mseclib.py + ./shadow.py libmsec > mseclib.py + +clean: + rm -f *.pyc *.pyo mseclib.py *~ + +# Local variables: +# mode: makefile +# End: +# +# Makefile ends here |