about summary refs log tree commit diff
path: root/Makefile
blob: 19f8e21762f5f923b8e3255423cc87ebea1d2159 (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
PREFIX ?= /usr/local
MANDIR ?= ${SHAREDIR}/man
DATADIR ?= ${PREFIX}/share

CFLAGS += -std=c11 -Wall -Wextra -Wpedantic
LDLIBS = -ltls

-include config.mk

OBJS += archive.o
OBJS += atom.o
OBJS += concat.o
OBJS += decode.o
OBJS += export.o
OBJS += html.o
OBJS += imap.o
OBJS += mbox.o
OBJS += parse.o
OBJS += template.o

dev: tags all

all: bubger

bubger: ${OBJS}
	${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@

${OBJS}: archive.h imap.h

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

clean:
	rm -f bubger ${OBJS} tags

install: bubger bubger.1 default.html
	install -d ${PREFIX}/bin ${MANDIR}/man1 ${DATADIR}/bubger
	install bubger ${PREFIX}/bin
	install -m 644 bubger.1 ${MANDIR}/man1
	install -m 644 default.html ${DATADIR}/bubger

uninstall:
	rm -f ${PREFIX}/bin/bubger ${MANDIR}/man1/bubger.1
	rm -fr ${DATADIR}/bubger