UNAME != uname PREFIX ?= /usr/local MANDIR ?= ${PREFIX}/man RUNDIR ?= /var/run .if ${UNAME} == OpenBSD ETCDIR ?= /etc .else ETCDIR ?= ${PREFIX}/etc .endif CFLAGS += -std=c99 -Wall -Wextra -Wpedantic CFLAGS += -D'ETCDIR="${ETCDIR}"' -D'RUNDIR="${RUNDIR}"' RC_SCRIPT = ${UNAME}/catsitd -include config.mk BINS = catsit catsitd MAN8 = ${BINS:=.8} MAN5 = catsit.conf.5 OBJS += daemon.o OBJS += service.o dev: tags all all: ${BINS} catsitd: ${OBJS} ${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@ ${OBJS}: daemon.h .SUFFIXES: .in .in: sed -e 's|%%PREFIX%%|${PREFIX}|g' -e 's|%%RUNDIR%%|${RUNDIR}|g' $< > $@ chmod a+x $@ tags: *.c *.h ctags -w *.c *.h clean: rm -f ${BINS} ${OBJS} ${RC_SCRIPT} tags install: ${BINS} ${RC_SCRIPT} ${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_SCRIPT} ${DESTDIR}${ETCDIR}/rc.d install -m 644 ${MAN5} ${DESTDIR}${MANDIR}/man5 install -m 644 ${MAN8} ${DESTDIR}${MANDIR}/man8 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/${RC_SCRIPT:T}