diff options
author | June McEnroe <june@causal.agency> | 2020-08-15 16:40:15 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-08-15 16:40:15 -0400 |
commit | 6fb08baee3602fc28c323a8eced868fd49050d7f (patch) | |
tree | d99bb308eda4cf46fd215269c91df529cfa81dbd /Makefile | |
parent | Use only LOG_NOTICE and LOG_WARNING (diff) | |
download | catsit-6fb08baee3602fc28c323a8eced868fd49050d7f.tar.gz catsit-6fb08baee3602fc28c323a8eced868fd49050d7f.zip |
Rename project to catsit
Diffstat (limited to '')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile index 5cf0897..d0448ce 100644 --- a/Makefile +++ b/Makefile @@ -8,9 +8,9 @@ CFLAGS += -D'ETCDIR="${ETCDIR}"' -D'RUNDIR="${RUNDIR}"' -include config.mk -BINS = spawn spawnd +BINS = catsit catsitd MAN8 = ${BINS:=.8} -MAN5 = spawntab.5 +MAN5 = catsit.conf.5 OBJS += daemon.o OBJS += service.o @@ -19,7 +19,7 @@ dev: tags all all: ${BINS} -spawnd: ${OBJS} +catsitd: ${OBJS} ${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@ ${OBJS}: daemon.h |