summaryrefslogtreecommitdiffhomepage
path: root/docs/web/Makefile
blob: 9b7c1ff662f0b48ac8116eb7769cbbb8d0c345b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# test webpage with `python -m SimpleHTTPServer`

all: index.html

tp.html.conf: ../man5/tinyproxy.conf.txt
	pod2html --noindex < $^ | awk -f podhtml-filter.awk > $@

index.html: tp.html.head tp.html.conf tp.html.foot
	cat $^ > $@

clean:
	rm tp.html.conf index.html *.tmp

.PHONY: all clean