summary refs log tree commit diff
path: root/contrib/palaver/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-04-30 17:35:54 -0400
committerJune McEnroe <june@causal.agency>2021-04-30 17:35:54 -0400
commit50b094ce5a75901ede92f6a5b6ba147379832e9c (patch)
tree3edd7544903071d7be96c9d72d939138a93af243 /contrib/palaver/Makefile
parentpalaver: Add -s flag for case-sensitive matching (diff)
downloadpounce-50b094ce5a75901ede92f6a5b6ba147379832e9c.tar.gz
pounce-50b094ce5a75901ede92f6a5b6ba147379832e9c.zip
Rename contrib to extra
Diffstat (limited to 'contrib/palaver/Makefile')
-rw-r--r--contrib/palaver/Makefile26
1 files changed, 0 insertions, 26 deletions
diff --git a/contrib/palaver/Makefile b/contrib/palaver/Makefile
deleted file mode 100644
index 457e592..0000000
--- a/contrib/palaver/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-PREFIX ?= /usr/local
-MANDIR ?= ${PREFIX}/share/man
-
-CFLAGS += -std=c11 -Wall -Wextra -Wpedantic
-LDLIBS = -lcurl -lsqlite3 -ltls
-
--include config.mk
-
-OBJS = notify.o
-
-all: pounce-palaver
-
-pounce-palaver: ${OBJS}
-	${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@
-
-clean:
-	rm -f ${OBJS} pounce-palaver
-
-install: pounce-palaver pounce-palaver.1
-	install -d ${DESTDIR}${PREFIX}/bin ${DESTDIR}${MANDIR}/man1
-	install pounce-palaver ${DESTDIR}${PREFIX}/bin
-	install -m 644 pounce-palaver.1 ${DESTDIR}${MANDIR}/man1
-
-uninstall:
-	rm -f ${DESTDIR}${PREFIX}/bin/pounce-palaver
-	rm -f ${DESTDIR}${MANDIR}/man1/pounce-palaver.1