Makefile

Sat, 18 Jul 2020 15:55:11 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sat, 18 Jul 2020 15:55:11 +0200
changeset 23
b66522a5726e
parent 22
32af3eef438b
permissions
-rw-r--r--

Version 0.23 some fixes for newer awk versions.

# Top level makefile for Slackware Security Check Scripts
# (C) 2014-2020 Michiel Broek
#

all:
	@echo "Nothing to do."


install:
	@mkdir -p ${DESTDIR}/etc/security.d/
	install -m 0755 security.d/* ${DESTDIR}/etc/security.d
	@mkdir -p ${DESTDIR}/etc/cron.daily/
	install -m 0755 cron.daily/security ${DESTDIR}/etc/cron.daily

dist:
	cd .. ; tar cvfz sscs-`grep VERSION= sscs/cron.daily/security | cut -d '=' -f 2 | tr -d '"'`.tar.gz sscs/* ; cd -

mercurial