Makefile

changeset 22
32af3eef438b
child 23
b66522a5726e
equal deleted inserted replaced
21:735fe1b89e5a 22:32af3eef438b
1 # Top level makefile for Slackware Security Check Scripts
2 # (C) 2014 Michiel Broek
3 #
4
5 all:
6 @echo "Nothing to do."
7
8
9 install:
10 @mkdir -p ${DESTDIR}/etc/security.d/
11 install -m 0755 security.d/* ${DESTDIR}/etc/security.d
12 @mkdir -p ${DESTDIR}/etc/cron.daily/
13 install -m 0755 cron.daily/security ${DESTDIR}/etc/cron.daily
14
15 dist:
16 cd .. ; tar cvfz sscs-`grep VERSION= sscs/cron.daily/security | cut -d '=' -f 2 | tr -d '"'`.tar.gz sscs/* ; cd -
17

mercurial