summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSuleyman Farajli <suleyman@farajli.net>2024-12-21 00:10:47 +0400
committerSuleyman Farajli <suleyman@farajli.net>2024-12-21 00:10:47 +0400
commitae6a1c15133f54e5a14321c81e500c908d29bc51 (patch)
treebc1537741932458a22313f8b4536070fcf3ac764
parentc8efd94a2e4583dfcca4ffa68abdb745412e84b9 (diff)
Makefile: all depends on build-page as well
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f808f7d..9c23b0f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,12 @@
SRC := $(shell find . -name '*.md')
HTML = $(SRC:.md=.html)
-all: $(HTML)
+all: $(HTML) build-page
%.html: %.md
sh build-page $< > $@
-clean:
+clean:
rm -f $(HTML)
.PHONY: all clean