summary refs log tree commit diff
path: root/contrib/palaver/Makefile
blob: 8c8f2d440a461dff920797190940c53c9ff640b3 (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
PREFIX ?= /usr/local
MANDIR ?= ${PREFIX}/share/man
ETCDIR ?= ${PREFIX}/etc

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
Add AuthorityJune McEnroe 2019-05-19Specify precedence of unary versions of operatorsJune McEnroe 2019-05-18Add compound assignment operators to orderJune McEnroe 2019-05-15Support simple assignment in orderJune McEnroe 2019-05-15Implement sizeof in orderJune McEnroe 2019-05-15Add orderJune McEnroe 2019-05-12Add T suffix in bitJune McEnroe 2019-05-10Highlight yacc and lex files as CJune McEnroe 2019-05-10Use val instead of suboptargJune McEnroe 2019-05-09Add Parable of the SowerJune McEnroe 2019-05-07Add bit without buildJune McEnroe 2019-05-04Fix MANDIR typoJune McEnroe 2019-05-04Move relay to binJune McEnroe