mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2025-12-06 01:49:28 +00:00
17 lines
272 B
Makefile
17 lines
272 B
Makefile
# Makefile
|
|
|
|
HTML := $(shell grep -xl '<!-- static html //-->' *.html)
|
|
|
|
.PHONY: all docs clean
|
|
|
|
all: docs
|
|
|
|
badges.html: badges.md
|
|
markdown $< > $@
|
|
|
|
docs: static-html.sh $(HTML) badges.html
|
|
./static-html.sh $(HTML)
|
|
|
|
clean:
|
|
rm -f badges.html
|
|
git checkout HEAD -- $(HTML)
|