summary refs log tree commit diff
path: root/www/git.causal.agency/Makefile
blob: 76c93d3aebca54dd4c15eb6277ff4ee3fdcf8037 (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
PREFIX = /var/www
CONFDIR = ${PREFIX}/conf
DATADIR = ${PREFIX}/cgit
BINDIR = ${PREFIX}/bin

BINS += about-filter
BINS += cat
BINS += compress
BINS += ctags
BINS += email-filter
BINS += gzip
BINS += hilex
BINS += htagml
BINS += mandoc
BINS += mktemp
BINS += mtags
BINS += owner-filter
BINS += rm
BINS += sh
BINS += source-filter

all: ${BINS}

cat rm sh:
	cp /bin/$@ $@

compress ctags mandoc mktemp:
	${MAKE} -C /usr/src/usr.bin/$@ LDFLAGS='-static -pie'
	mv /usr/src/usr.bin/$@/$@ $@
	${MAKE} -C /usr/src/usr.bin/$@ clean

gzip: compress
	cp compress $@

hilex htagml mtags:
	rm -f ../../bin/$@
	${MAKE} -C ../../bin $@ LDFLAGS='-static -pie'
	mv ../../bin/$@ $@

install: cgitrc custom.css ${BINS}
	install -m 644 cgitrc ${CONFDIR}
	install -m 644 custom.css ${DATADIR}
	install -d -o www -g daemon ${PREFIX}/cache/cgit
	install -d -m 1700 -o www -g daemon ${PREFIX}/tmp
	install ${BINS} ${BINDIR}

clean:
	rm -f ${BINS}