diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2024-12-21 00:10:47 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2024-12-21 00:10:47 +0400 |
commit | ae6a1c15133f54e5a14321c81e500c908d29bc51 (patch) | |
tree | bc1537741932458a22313f8b4536070fcf3ac764 | |
parent | c8efd94a2e4583dfcca4ffa68abdb745412e84b9 (diff) |
Makefile: all depends on build-page as well
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |