summary refs log tree commit diff
path: root/bin/Makefile
blob: a07eb95601d6a9f66d2eeb3b8fe2c1f790830ad7 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
PREFIX = ~/.local
MANDIR = ${PREFIX}/share/man

CFLAGS += -Wall -Wextra -Wpedantic
LDLIBS = -lm -lutil -lz

CURL_PREFIX = /usr/local
CFLAGS_curl = ${CFLAGS} -I${CURL_PREFIX}/include
LDFLAGS_curl = ${LDFLAGS} -L${CURL_PREFIX}/lib
LDLIBS_curl = ${LDLIBS} -lcurl

LIBRESSL_PREFIX = /usr/local
CFLAGS_tls = ${CFLAGS} -I${LIBRESSL_PREFIX}/include
LDFLAGS_tls = ${LDFLAGS} -L${LIBRESSL_PREFIX}/lib
LDLIBS_tls = ${LDLIBS} -ltls

-include config.mk

BINS_ANY += aes
BINS_ANY += beef
BINS_ANY += bit
BINS_ANY += dtch
BINS_ANY += edit
BINS_ANY += glitch
BINS_ANY += hi
BINS_ANY += hnel
BINS_ANY += modem
BINS_ANY += order
BINS_ANY += pbd
BINS_ANY += pngo
BINS_ANY += psf2png
BINS_ANY += ptee
BINS_ANY += scheme
BINS_ANY += setopt
BINS_ANY += shotty
BINS_ANY += ttpre
BINS_ANY += up
BINS_ANY += when
BINS_ANY += xx

LINKS_ANY += open
LINKS_ANY += pbcopy
LINKS_ANY += pbpaste

BINS_BSD += ever

BINS_LINUX += bri
BINS_LINUX += fbatt
BINS_LINUX += fbclock
BINS_LINUX += psfed

BINS_CURL += title

BINS_TLS += relay

BINS = ${BINS_ANY} ${BINS_BSD} ${BINS_LINUX} ${BINS_CURL} ${BINS_TLS}
MANS = ${BINS:%=man1/%.1}
LINKS = ${LINKS_ANY}

# Groups

any: meta ${BINS_ANY} ${LINKS_ANY}

bsd: meta ${BINS_BSD}

linux: meta ${BINS_LINUX}

curl: meta ${BINS_CURL}

tls: meta ${BINS_TLS}

meta: tags .gitignore README

# Binaries

hi: hi.c
	${CC} ${CFLAGS} ${LDFLAGS} hi.c ${LDLIBS} -o $@
	./hi -c

open pbcopy pbpaste: pbd
	ln -f pbd $@

relay: relay.c
	${CC} ${CFLAGS_tls} ${LDFLAGS_tls} $@.c ${LDLIBS_tls} -o $@

title: title.c
	${CC} ${CFLAGS_curl} ${LDFLAGS_curl} $@.c ${LDLIBS_curl} -o $@

# Headers

fbatt.o fbclock.o: scheme.h

psf2png.o scheme.o: png.h

scheme.h: scheme
	./scheme -c > scheme.h

.o:
	${CC} ${LDFLAGS} $< ${LDLIBS} -o $@

# HTML

HTMLS = index.html ${BINS:%=%.html} png.html
WEBROOT = /usr/local/www/causal.agency

html: ${HTMLS}
	@true

${HTMLS}: html.sh hi ttpre

.SUFFIXES: .html

.c.html:
	sh html.sh $< man1/${<:.c=.1} > $@

.h.html:
	sh html.sh $< man3/${<:.h=.3} > $@

.sh.html:
	sh html.sh $< man1/${<:.sh=.1} > $@

.y.html:
	sh html.sh $< man1/${<:.y=.1} > $@

index.html: Makefile bin.7
	sh html.sh Makefile bin.7 \
		| sed -E 's,([a-z0-9-]+)[(][1-9][)],<a href="\1.html">&</a>,' \
		> index.html

# Meta

README: bin.7
	mandoc bin.7 | col -bx > README

scheme.png: scheme
	./scheme -gt > scheme.png

tags: *.h *.c
	ctags -w *.h *.c

IGNORE = '*.o' '*.html' scheme.h scheme.png tags ${BINS} ${LINKS}

.gitignore: Makefile
	echo config.mk ${IGNORE} | tr ' ' '\n' | sort > .gitignore

clean:
	rm -f ${IGNORE}

# Install

link:
	install -d ${PREFIX}/bin ${MANDIR}/man1
	ln -fs ${BINS:%=${PWD}/%} ${LINKS:%=${PWD}/%} ${PREFIX}/bin
	ln -fs ${MANS:%=${PWD}/%} ${MANDIR}/man1

unlink:
	rm -f ${BINS:%=${PREFIX}/bin/%} ${LINKS:%=${PREFIX}/bin/%}
	rm -f ${MANS:%=${MANDIR}/%}

install-html: ${HTMLS}
	install -d ${WEBROOT}/bin
	install -C -m 644 ${HTMLS} ${WEBROOT}/bin

setuid: bri
	chown root bri
	chmod u+s bri
h=1.3.0&id=0899eb644fab415e9a3b304f53da9da50aaf91aa&follow=1'>ui-ssdiff: ban strncpy()Christian Hesse Git upstream bans strncpy() with commit: banned.h: mark strncpy() as banned e488b7aba743d23b830d239dcc33d9ca0745a9ad Signed-off-by: Christian Hesse <mail@eworm.de> 2018-09-11ui-shared: ban strcat()Christian Hesse Git upstream bans strcat() with commit: banned.h: mark strcat() as banned 1b11b64b815db62f93a04242e4aed5687a448748 To avoid compiler warnings from gcc 8.1.x we get the hard way. Signed-off-by: Christian Hesse <mail@eworm.de> 2018-09-11ui-patch: ban sprintf()Christian Hesse Git upstream bans sprintf() with commit: banned.h: mark sprintf() as banned cc8fdaee1eeaf05d8dd55ff11f111b815f673c58 Signed-off-by: Christian Hesse <mail@eworm.de> 2018-09-11ui-log: ban strncpy()Christian Hesse Git upstream bans strncpy() with commit: banned.h: mark strncpy() as banned e488b7aba743d23b830d239dcc33d9ca0745a9ad Signed-off-by: Christian Hesse <mail@eworm.de> 2018-09-11ui-log: ban strcpy()Christian Hesse Git upstream bans strcpy() with commit: automatically ban strcpy() c8af66ab8ad7cd78557f0f9f5ef6a52fd46ee6dd Signed-off-by: Christian Hesse <mail@eworm.de> 2018-09-11parsing: ban sprintf()Christian Hesse Git upstream bans sprintf() with commit: banned.h: mark sprintf() as banned cc8fdaee1eeaf05d8dd55ff11f111b815f673c58 Signed-off-by: Christian Hesse <mail@eworm.de> 2018-09-11parsing: ban strncpy()Christian Hesse Git upstream bans strncpy() with commit: banned.h: mark strncpy() as banned e488b7aba743d23b830d239dcc33d9ca0745a9ad Signed-off-by: Christian Hesse <mail@eworm.de> 2018-08-28filters: generate anchor links from markdownChristian Hesse This makes the markdown filter generate anchor links for headings. Signed-off-by: Christian Hesse <mail@eworm.de> Tested-by: jean-christophe manciot <actionmystique@gmail.com> 2018-08-03Bump version.Jason A. Donenfeld Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2018-08-03clone: fix directory traversalJason A. Donenfeld This was introduced in the initial version of this code, way back when in 2008. $ curl http://127.0.0.1/cgit/repo/objects/?path=../../../../../../../../../etc/passwd root:x:0:0:root:/root:/bin/sh ... Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> Reported-by: Jann Horn <jannh@google.com> 2018-08-03config: record repo.snapshot-prefix in the per-repo configKonstantin Ryabitsev