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