summary refs log tree commit diff
path: root/Makefile
blob: ac9c045badfd95a5951b182db965ae13bd618422 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
PREFIX ?= /usr/local
BINDIR ?= ${PREFIX}/bin
MANDIR ?= ${PREFIX}/man

CFLAGS += -std=c11 -Wall -Wextra -Wpedantic
LDADD.crypt = -lcrypt
LDADD.libtls = -ltls

BINS = calico pounce
MANS = ${BINS:=.1}

-include config.mk

LDLIBS.calico =
LDLIBS.pounce = ${LDADD.crypt} ${LDADD.libtls}

OBJS.calico += dispatch.o

OBJS.pounce += bounce.o
OBJS.pounce += client.o
OBJS.pounce += config.o
OBJS.pounce += local.o
OBJS.pounce += ring.o
OBJS.pounce += server.o
OBJS.pounce += state.o
OBJS.pounce += xdg.o

OBJS = ${OBJS.calico} ${OBJS.pounce}

dev: tags all

all: ${BINS}

calico: ${OBJS.calico}

pounce: ${OBJS.pounce}

${BINS}:
	${CC} ${LDFLAGS} ${OBJS.$@} ${LDLIBS.$@} -o $@

${OBJS.pounce}: bounce.h

tags: *.[ch]
	ctags -w *.[ch]

clean:
	rm -f ${BINS} ${OBJS} tags

install: ${BINS} ${MANS}
	install -d ${DESTDIR}${BINDIR} ${DESTDIR}${MANDIR}/man1
	install ${BINS} ${DESTDIR}${BINDIR}
	install -m 644 ${MANS} ${DESTDIR}${MANDIR}/man1

uninstall:
	rm -f ${BINS:%=${DESTDIR}${BINDIR}/%}
	rm -f ${MANS:%=${DESTDIR}${MANDIR}/man1/%}

localhost.pem: pounce
	./pounce -g $@
it/www/git.causal.agency/source-filter.sh?id=5be0d7f6ec83dd09837f5da2617178136954c90d&follow=1'>Use mtags in source-filterJune McEnroe 2021-01-19Add mtags to generate tags for make and mdocJune McEnroe 2021-01-19Map tags to IDs using only [[:alnum:]-._]June McEnroe 2021-01-19Don't use a pager if reading standard inputJune McEnroe 2021-01-19Support BSD make syntax and match *.amJune McEnroe These don't really go together, but... 2021-01-19Match tab following escaped newline in make assignmentsJune McEnroe Otherwise it ends up going into Shell state. 2021-01-18Allow matching lexers using first input lineJune McEnroe