summary refs log tree commit diff
path: root/extra/palaver/Makefile
blob: fbf10df5c8ba858140abf478ed27de3dba8a550f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
PREFIX ?= /usr/local
BINDIR ?= ${PREFIX}/bin
MANDIR ?= ${PREFIX}/man

CFLAGS += -std=c11 -Wall -Wextra -Wpedantic
LDADD.libcurl = -lcurl
LDADD.libtls = -ltls
LDADD.sqlite3 = -lsqlite3

-include config.mk

LDLIBS = ${LDADD.libcurl} ${LDADD.libtls} ${LDADD.sqlite3}
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}${BINDIR} ${DESTDIR}${MANDIR}/man1
	install pounce-palaver ${DESTDIR}${BINDIR}
	install -m 644 pounce-palaver.1 ${DESTDIR}${MANDIR}/man1

uninstall:
	rm -f ${DESTDIR}${BINDIR}/pounce-palaver
	rm -f ${DESTDIR}${MANDIR}/man1/pounce-palaver.1
le='2020-08-24 21:54:17 -0400'>2020-08-24Use configOpen in getopt_configJune McEnroe 2020-08-24Import xdg.c from catgirlJune McEnroe 2020-08-23Replace “RAND_bytes” by “getentropy”Issam E. Maghni 2020-08-16contrib/palaver: Add no message preview flagsJune McEnroe 2020-08-13contrib/palaver: Don't set channel for PMsJune McEnroe 2020-08-13Fix unintended interception of NICK after registrationJune McEnroe 2020-08-12Add Additional Components section to READMEJune McEnroe 2020-08-12Document -L / palaver optionJune McEnroe 2020-08-11contrib/palaver: Document service configurationJune McEnroe 2020-08-11contrib/palaver: Add install target and rc scriptJune McEnroe 2020-08-11contrib/palaver: Implement command and notificationsJune McEnroe