routeros-scripts/Makefile

26 lines
862 B
Makefile
Raw Normal View History

# Makefile to generate data:
# template scripts -> final scripts
# markdown files -> html files
TEMPLATE = $(wildcard *.template)
CAPSMAN = $(TEMPLATE:.template=.capsman)
LOCAL = $(TEMPLATE:.template=.local)
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
all: $(CAPSMAN) $(LOCAL) $(HTML)
%.html: %.md Makefile
markdown $< | sed 's/href="\([-_\./[:alnum:]]*\)\.md"/href="\1.html"/g' > $@
%.local: %.template Makefile
2022-05-10 14:27:53 +02:00
sed -e '/\/caps-man/d' -e 's|%PATH%|interface\/wireless|' -e 's|%TEMPL%|$(suffix $@)|' \
2018-07-10 14:01:41 +02:00
-e '/^# !!/,/^# !!/c # !! Do not edit this file, it is generated from template!' \
< $< > $@
%.capsman: %.template Makefile
2022-05-10 14:27:53 +02:00
sed -e '/\/interface\/wireless/d' -e 's/%PATH%/caps-man/' -e 's/%TEMPL%/$(suffix $@)/' \
2018-07-10 14:01:41 +02:00
-e '/^# !!/,/^# !!/c # !! Do not edit this file, it is generated from template!' \
< $< > $@