diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2024-12-21 00:31:54 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2024-12-21 00:33:40 +0400 |
commit | 429134a82cbaf0d21f7a80a4b3d9c6d5fc11809a (patch) | |
tree | 424f9e5deb2af6c3ee6043feee28d27b192d0cb7 /GNUmakefile | |
parent | 7439f77ecd42d87bba6f090ea3ceff1664c9747f (diff) |
Makefile: Bug fix: html files depend on build-page not 'all' target
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index 9c23b0f..6407870 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,9 +1,9 @@ SRC := $(shell find . -name '*.md') HTML = $(SRC:.md=.html) -all: $(HTML) build-page +all: $(HTML) -%.html: %.md +%.html: %.md build-page sh build-page $< > $@ clean: |