From 434548e043bd18901ff39fd6dee8c1b031653241 Mon Sep 17 00:00:00 2001 From: Suleyman Farajli Date: Thu, 13 Feb 2025 00:48:47 +0400 Subject: Makefile: `output` -> `output/` to indicate it's a directory --- GNUmakefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index dd66df7..5213cfc 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -6,10 +6,10 @@ all: $(HTML) %.html: %.md build-page sh build-page $< > $@ -output: $(HTML) - echo $? | xargs -n 1 dirname | xargs -I _ mkdir -p $@/_ - echo $? | xargs -n 1 | xargs -I _ cp _ $@/_ - cp favicon.ico style.css $@/ +output/: $(HTML) + echo $? | xargs -n 1 dirname | xargs -I _ mkdir -p $@_ + echo $? | xargs -n 1 | xargs -I _ cp _ $@_ + cp favicon.ico style.css $@ clean: rm -rf $(HTML) output/ -- cgit v1.2.3