From 78b13ca5f0677f9e6e5a07a18473a2d7724b51d0 Mon Sep 17 00:00:00 2001 From: Yoann Vandoorselaere Date: Thu, 25 Nov 1999 19:44:10 +0000 Subject: Initial revision --- Makefile | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a7e1e15 --- /dev/null +++ b/Makefile @@ -0,0 +1,36 @@ +all: promisc_check + +clean: + find . -name *.o -exec rm -f {} \; + find . -name *~ -exec rm -f {} \; + rm -f src/promisc_check/promisc_check + +promisc_check: + (cd src/promisc_check; make) + +install: + (rm -rf /etc/security/msec) + (mkdir -p /etc/security/msec/init-sh) + (cp init-sh/level* /etc/security/msec/init-sh) + (cp init-sh/init.sh /etc/security/msec/init.sh); + (cp init-sh/lib.sh /etc/security/msec/init-sh); + (cp init-sh/grpuser /etc/security/msec/init-sh); + (cp init-sh/file_perm.sh /etc/security/msec/init-sh); + (cp init-sh/*.[1-5] /etc/security/msec/init-sh/) + (cp init-sh/server.* /etc/security/msec/init-sh) + (touch /etc/security/msec/security.conf) + (cd src/promisc_check; make install) + (cd cron-sh; make install) + + @echo + @echo + @echo "BE CAREFULL !!!" + @echo "This is *alpha* release & it does not contains all planned features..." + @echo "Please help debuging it..." + @echo "See security.txt to know what is done & all :-)" + @echo + @echo + @echo "To switch between runlevel, just launch init.sh ( in init-sh dir )" + @echo + @echo + -- cgit v1.2.1