about summary refs log tree commit diff
path: root/contrib/palaver/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--contrib/palaver/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/contrib/palaver/Makefile b/contrib/palaver/Makefile
new file mode 100644
index 0000000..5810ce2
--- /dev/null
+++ b/contrib/palaver/Makefile
@@ -0,0 +1,12 @@
+CFLAGS += -std=c11 -Wall -Wextra -Wpedantic
+LDLIBS = -lcurl -lsqlite3 -ltls
+
+-include config.mk
+
+OBJS = notify.o
+
+pounce-palaver: ${OBJS}
+	${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@
+
+clean:
+	rm -f pounce-palaver ${OBJS}