mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2025-12-14 22:09:29 +00:00
12 lines
187 B
Makefile
12 lines
187 B
Makefile
# Makefile
|
|
|
|
HTML := $(wildcard *.html)
|
|
|
|
.PHONY: all docs
|
|
|
|
all: docs
|
|
|
|
docs: $(HTML)
|
|
sed -i -e '/href=/s|\.md|\.html|' \
|
|
-e '/blockquote/s|/\*! display \*/|display: none;|' \
|
|
$(HTML)
|