From 159c94c4c142d13c033b631cc75ab4d7d4101d58 Mon Sep 17 00:00:00 2001 From: Kévin Le Gouguec Date: Sat, 14 Mar 2020 15:38:30 +0100 Subject: Let Makefile compute page folders Since it already computes the list of pages. I'm not comfortable with the pattern substitution, the implicit "slash management" is not obvious. --- repo/www/Makefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'repo/www/Makefile') diff --git a/repo/www/Makefile b/repo/www/Makefile index 2cf5f9c..21bf328 100644 --- a/repo/www/Makefile +++ b/repo/www/Makefile @@ -5,6 +5,8 @@ text_files = md org text_patterns = $(foreach ext,$(text_files),'$(TOP_DIR)/**.$(ext)') text_folders = $(sort $(dir $(shell git ls-files $(text_patterns)))) +page_folders = $(patsubst $(TOP_DIR)%/,$(OUT_DIR)%,$(text_folders)) + all: site include deps.mk -- cgit v1.2.3