about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-08-15 17:40:08 -0400
committerJune McEnroe <june@causal.agency>2020-08-15 17:40:17 -0400
commitf67269202ef1bdb0e7b91aaa1d2799a9bc35ac73 (patch)
tree8267137124a3b64798b4c353f580c85872d03a0e /Makefile
parentCall setproctitle with number of services (diff)
downloadcatsit-f67269202ef1bdb0e7b91aaa1d2799a9bc35ac73.tar.gz
catsit-f67269202ef1bdb0e7b91aaa1d2799a9bc35ac73.zip
Add FreeBSD rc script
I'm expecting to also have an OpenBSD rc script.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 12 insertions, 3 deletions
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
09-22Remove default faviconJune McEnroe 2021-09-21Use Z_FILTERED strategyJune McEnroe 2021-09-21Recalculate various lengths only as neededJune McEnroe 2021-09-21Rewrite pngo, add explicit optionsJune McEnroe 2021-09-16Fix /* **/ comment matchingJune McEnroe 2021-09-15Remove typer, add downgrade to READMEJune McEnroe 2021-09-15Set bot mode on downgradeJune McEnroe 2021-09-15Enter capsicum in downgradeJune McEnroe 2021-09-15Factor out common parts of downgrade messagesJune McEnroe 2021-09-14Add downgrade IRC botJune McEnroe 2021-09-14Sort by title if authors matchJune McEnroe 2021-09-13Swap-remove tags as they're foundJune McEnroe 2021-09-12Replace htagml regex with strncmpJune McEnroe 2021-09-11Also defer printing comment for lone close-parensJune McEnroe 2021-09-10Publish "git-comment"June McEnroe 2021-09-10Add git comment --pretty optionJune McEnroe 2021-09-08Defer printing comment if line is blank or closing braceJune McEnroe 2021-09-08Up default min-repeat to 30 linesJune McEnroe 2021-09-08Handle dirty lines in git-commentJune McEnroe 2021-09-08Document and install git-commentJune McEnroe 2021-09-08Add repeat and all options to git-commentJune McEnroe 2021-09-08Add group threshold to git-commentJune McEnroe