catsit/Makefile

71 lines
1.4 KiB
Makefile
Raw Normal View History

UNAME != uname
2020-08-14 18:21:21 +02:00
PREFIX ?= /usr/local
MANDIR ?= ${PREFIX}/man
2020-08-14 18:21:21 +02:00
RUNDIR ?= /var/run
2022-02-26 06:33:32 +01:00
.if ${UNAME} == FreeBSD
ETCDIR ?= ${PREFIX}/etc
2022-02-26 06:33:32 +01:00
.else
ETCDIR ?= /etc
.endif
2020-08-14 18:21:21 +02:00
2020-08-14 18:15:03 +02:00
CFLAGS += -std=c99 -Wall -Wextra -Wpedantic
2020-08-14 18:21:21 +02:00
CFLAGS += -D'ETCDIR="${ETCDIR}"' -D'RUNDIR="${RUNDIR}"'
2020-08-14 18:15:03 +02:00
RC_SCRIPT = ${UNAME}/catsitd
2020-08-14 18:15:03 +02:00
-include config.mk
2021-02-26 01:45:56 +01:00
BINS = catsit-timer catsit-watch
2021-02-25 21:42:24 +01:00
SBINS = catsit catsitd
2022-02-26 06:33:32 +01:00
MANS = ${BINS:=.1} catsit.conf.5 ${SBINS:=.8}
2020-08-14 18:21:21 +02:00
2022-02-26 06:33:32 +01:00
OBJS = daemon.o service.o
2020-08-14 18:15:03 +02:00
2020-08-15 15:56:32 +02:00
dev: tags all
2021-02-25 21:42:24 +01:00
all: ${BINS} ${SBINS}
2020-08-14 18:15:03 +02:00
2020-08-15 22:40:15 +02:00
catsitd: ${OBJS}
2020-08-14 18:15:03 +02:00
${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@
${OBJS}: daemon.h
.SUFFIXES: .in
.in:
2020-08-18 05:25:34 +02:00
sed -e 's|%%PREFIX%%|${PREFIX}|g' -e 's|%%RUNDIR%%|${RUNDIR}|g' $< > $@
2020-10-23 17:10:00 +02:00
chmod a+x $@
2020-08-18 05:25:34 +02:00
2021-02-25 21:42:24 +01:00
tags: *.[ch]
ctags -w *.[ch]
2020-08-14 18:15:03 +02:00
clean:
2021-02-25 21:42:24 +01:00
rm -f ${BINS} ${SBINS} ${OBJS} ${RC_SCRIPT} tags
2022-02-26 06:33:32 +01:00
install: ${BINS} ${SBINS} ${MANS} ${RC_SCRIPT}
2021-02-25 21:42:24 +01:00
install -d ${DESTDIR}${PREFIX}/bin
install -d ${DESTDIR}${PREFIX}/sbin
2022-02-26 06:33:32 +01:00
.for sect in 1 5 8
install -d ${DESTDIR}${MANDIR}/man${sect}
.endfor
2021-02-25 21:42:24 +01:00
install -d ${DESTDIR}${ETCDIR}/rc.d
install ${BINS} ${DESTDIR}${PREFIX}/bin
install ${SBINS} ${DESTDIR}${PREFIX}/sbin
2022-02-26 06:33:32 +01:00
.for man in ${MANS}
install -m 444 ${man} ${DESTDIR}${MANDIR}/man${man:E}
.endfor
install ${RC_SCRIPT} ${DESTDIR}${ETCDIR}/rc.d
2020-08-14 18:21:21 +02:00
uninstall:
2022-02-26 06:33:32 +01:00
.for bin in ${BINS}
rm -f ${DESTDIR}${PREFIX}/bin/${bin}
2021-02-25 21:42:24 +01:00
.endfor
2022-02-26 06:33:32 +01:00
.for sbin in ${SBINS}
rm -f ${DESTDIR}${PREFIX}/sbin/${sbin}
2021-02-25 21:42:24 +01:00
.endfor
2022-02-26 06:33:32 +01:00
.for man in ${MANS}
rm -f ${DESTDIR}${MANDIR}/man${man:E}/${man}
2021-02-25 21:42:24 +01:00
.endfor
2022-02-26 06:33:32 +01:00
rm -f ${DESTDIR}${ETCDIR}/rc.d/${RC_SCRIPT:T}