mirror of
https://github.com/eworm-de/routeros-scripts.git
synced 2025-12-09 19:39:29 +00:00
10 lines
123 B
Makefile
10 lines
123 B
Makefile
# Makefile
|
|
|
|
HTML := $(wildcard *.html)
|
|
|
|
.PHONY: all docs
|
|
|
|
all: docs
|
|
|
|
docs: $(HTML)
|
|
sed -i '/href=/s|\.md|\.html|' $(HTML)
|