aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: b5f49af3f931226d2c7fba167305e4adabbeed1c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
GENERATE = *.capsman *.local

all: $(GENERATE) README.html

README.html: README.md
	markdown README.md > README.html

%.local: *.template Makefile
	sed -e '/\/ caps-man/d' -e 's|%PATH%|interface wireless|' -e 's|%TEMPL%|$(suffix $@)|' \
		-e '/^# !!/,/^# !!/c # !! Do not edit this file, it is generated from template!' \
		< $(basename $@).template > $@

%.capsman: *.template Makefile
	sed -e '/\/ interface wireless/d' -e 's/%PATH%/caps-man/' -e 's/%TEMPL%/$(suffix $@)/' \
		-e '/^# !!/,/^# !!/c # !! Do not edit this file, it is generated from template!' \
		< $(basename $@).template > $@