aboutsummaryrefslogtreecommitdiffstats
path: root/src/msec/Makefile
blob: 829f654eb8dc0e9ff3dbc9979fea33b9bc1eea57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#---------------------------------------------------------------
# Project         : Mandriva Linux
# Module          : share
# File            : Makefile
# Version         : $Id$
# Author          : Frederic Lepied
# Created On      : Sat Jan 26 20:17:55 2002
#---------------------------------------------------------------

MAN=../../man/C/msec.8
PFILES=msecperms.py compile.py libmsec.py man.py

all: compile man help

compile:
	./compile.py '/usr/share/msec/' *.py
	./compile.py '/usr/share/msec/plugins' plugins/*.py

man: $(MAN)

help: libmsec.py help_draksec.py
	./help_draksec.py

$(MAN): libmsec.py man.py
	rm -f $@
	./man.py libmsec > $@

clean:
	rm -f *.pyc *.pyo mseclib.py *~ help.*

# Local variables:
# mode: makefile
# End:
#
# Makefile ends here