2019-01-02 14:41:00 +00:00
|
|
|
# Makefile to generate data:
|
|
|
|
# template scripts -> final scripts
|
|
|
|
# markdown files -> html files
|
2018-07-09 14:44:44 +00:00
|
|
|
|
2019-01-02 14:41:00 +00:00
|
|
|
TEMPLATE = $(wildcard *.template)
|
|
|
|
CAPSMAN = $(TEMPLATE:.template=.capsman)
|
|
|
|
LOCAL = $(TEMPLATE:.template=.local)
|
2018-07-09 14:44:44 +00:00
|
|
|
|
2019-01-02 14:41:00 +00:00
|
|
|
MARKDOWN = $(wildcard *.md)
|
2021-05-26 06:51:51 +00:00
|
|
|
HTML = $(MARKDOWN:.md=.html)
|
2018-08-24 15:06:45 +00:00
|
|
|
|
2019-01-02 14:41:00 +00:00
|
|
|
all: $(CAPSMAN) $(LOCAL) $(HTML)
|
|
|
|
|
|
|
|
%.html: %.md Makefile
|
2019-01-02 15:20:34 +00:00
|
|
|
markdown $< | sed 's/href="\([-[:alnum:]]*\)\.md"/href="\1.html"/g' > $@
|
2019-01-02 14:41:00 +00:00
|
|
|
|
|
|
|
%.local: %.template Makefile
|
2018-07-10 12:01:41 +00:00
|
|
|
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!' \
|
2019-01-02 14:41:00 +00:00
|
|
|
< $< > $@
|
2018-07-09 14:44:44 +00:00
|
|
|
|
2019-01-02 14:41:00 +00:00
|
|
|
%.capsman: %.template Makefile
|
2018-07-10 12:01:41 +00:00
|
|
|
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!' \
|
2019-01-02 14:41:00 +00:00
|
|
|
< $< > $@
|