From f67269202ef1bdb0e7b91aaa1d2799a9bc35ac73 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sat, 15 Aug 2020 17:40:08 -0400 Subject: Add FreeBSD rc script I'm expecting to also have an OpenBSD rc script. --- Makefile | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d0448ce..a37a40f 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,8 @@ RUNDIR ?= /var/run CFLAGS += -std=c99 -Wall -Wextra -Wpedantic CFLAGS += -D'ETCDIR="${ETCDIR}"' -D'RUNDIR="${RUNDIR}"' +RC = FreeBSD/catsitd + -include config.mk BINS = catsit catsitd @@ -27,13 +29,19 @@ ${OBJS}: daemon.h tags: *.c *.h ctags -w *.c *.h +.SUFFIXES: .in + +.in: + sed -e 's|%%PREFIX%%|${PREFIX}|g' $< > $@ + clean: - rm -f ${BINS} ${OBJS} tags + rm -f ${BINS} ${OBJS} ${RC} tags -install: ${BINS} ${MAN5} ${MAN8} - install -d ${DESTDIR}${PREFIX}/sbin +install: ${BINS} ${RC} ${MAN5} ${MAN8} + install -d ${DESTDIR}${PREFIX}/sbin ${DESTDIR}${ETCDIR}/rc.d install -d ${DESTDIR}${MANDIR}/man5 ${DESTDIR}${MANDIR}/man8 install ${BINS} ${DESTDIR}${PREFIX}/sbin + install ${RC} ${DESTDIR}${ETCDIR}/rc.d install -m 644 ${MAN5} ${DESTDIR}${MANDIR}/man5 install -m 644 ${MAN8} ${DESTDIR}${MANDIR}/man8 @@ -41,3 +49,4 @@ uninstall: rm -f ${BINS:%=${DESTDIR}${PREFIX}/sbin/%} rm -f ${MAN5:%=${DESTDIR}${MANDIR}/man5/%} rm -f ${MAN8:%=${DESTDIR}${MANDIR}/man8/%} + rm -f ${DESTDIR}${ETCDIR}/rc.d/catsitd -- cgit 1.4.1