From 429134a82cbaf0d21f7a80a4b3d9c6d5fc11809a Mon Sep 17 00:00:00 2001 From: Suleyman Farajli Date: Sat, 21 Dec 2024 00:31:54 +0400 Subject: Makefile: Bug fix: html files depend on build-page not 'all' target --- GNUmakefile | 4 ++-- 1 file 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: -- cgit v1.2.3