routeros-scripts-main/contrib/Makefile

18 lines
272 B
Makefile
Raw Normal View History

# Makefile
HTML := $(shell grep -xl '<!-- static html //-->' *.html)
2025-11-18 19:18:43 +01:00
.PHONY: all docs clean
all: docs
2025-11-18 19:01:39 +01:00
badges.html: badges.md
markdown $< > $@
docs: static-html.sh $(HTML) badges.html
./static-html.sh $(HTML)
2025-11-18 19:18:43 +01:00
clean:
rm -f badges.html
git checkout HEAD -- $(HTML)