File: Makefile

package info (click to toggle)
tinyproxy 1.11.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 912 kB
  • sloc: ansic: 6,361; sh: 359; perl: 351; makefile: 190; awk: 4
file content (15 lines) | stat: -rw-r--r-- 293 bytes parent folder | download | duplicates (2)
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