mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2025-06-21 01:25:52 +02:00
Makefile: support wifiwave2 in templates
This commit is contained in:
parent
b014eb76c6
commit
14dcea23b2
1 changed files with 9 additions and 3 deletions
12
Makefile
12
Makefile
|
@ -5,22 +5,28 @@
|
|||
TEMPLATE = $(wildcard *.template.rsc)
|
||||
CAPSMAN = $(TEMPLATE:.template.rsc=.capsman.rsc)
|
||||
LOCAL = $(TEMPLATE:.template.rsc=.local.rsc)
|
||||
WIFIWAVE2 = $(TEMPLATE:.template.rsc=.wifiwave2.rsc)
|
||||
|
||||
MARKDOWN = $(wildcard *.md doc/*.md doc/mod/*.md)
|
||||
HTML = $(MARKDOWN:.md=.html)
|
||||
|
||||
all: $(CAPSMAN) $(LOCAL) $(HTML)
|
||||
all: $(CAPSMAN) $(LOCAL) $(WIFIWAVE2) $(HTML)
|
||||
|
||||
%.html: %.md Makefile
|
||||
markdown $< | sed 's/href="\([-_\./[:alnum:]]*\)\.md"/href="\1.html"/g' > $@
|
||||
|
||||
%.local.rsc: %.template.rsc Makefile
|
||||
sed -e '/\/caps-man/d' -e 's|%TEMPL%|.local|' \
|
||||
sed -e '/\/caps-man/d' -e '/\/interface\/wifiwave2/d' -e 's|%TEMPL%|.local|' \
|
||||
-e '/^# !!/,/^# !!/c # !! Do not edit this file, it is generated from template!' \
|
||||
< $< > $@
|
||||
|
||||
%.capsman.rsc: %.template.rsc Makefile
|
||||
sed -e '/\/interface\/wireless/d' -e 's|%TEMPL%|.capsman|' \
|
||||
sed -e '/\/interface\/wifiwave2/d' -e '/\/interface\/wireless/d' -e 's|%TEMPL%|.capsman|' \
|
||||
-e '/^# !!/,/^# !!/c # !! Do not edit this file, it is generated from template!' \
|
||||
< $< > $@
|
||||
|
||||
%.wifiwave2.rsc: %.template.rsc Makefile
|
||||
sed -e '/\/caps-man/d' -e '/\/interface\/wireless/d' -e 's|%TEMPL%|.wifiwave2|' \
|
||||
-e '/^# !!/,/^# !!/c # !! Do not edit this file, it is generated from template!' \
|
||||
< $< > $@
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue