mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2025-12-24 02:39:30 +00:00
13 lines
230 B
Makefile
13 lines
230 B
Makefile
# Makefile
|
|
|
|
STATIC_HTML := $(shell grep -xl '<!-- static html //-->' *.html)
|
|
|
|
.PHONY: all docs
|
|
|
|
all: docs
|
|
|
|
badges.html: badges.md
|
|
markdown $< > $@
|
|
|
|
docs: static-html.sh $(STATIC_HTML) badges.html
|
|
./static-html.sh $(STATIC_HTML)
|