memory-leaks

Still reachable: lots of words in many pages.
git clone https://git.kevinlegouguec.net/memory-leaks
Log | Files | Refs | README | LICENSE

commit e598068b7b99002121d1646a913bebedf8df1ee3
parent f62a18342eaee27bb6034418ec3247e9a3da3b4a
Author: Kévin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Sat, 14 Mar 2020 16:07:42 +0100

Establish a convention for makefile variables

"Uppercase = public API, lowercase = internal plumbing".

Diffstat:
Mrepo/www/Makefile | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/repo/www/Makefile b/repo/www/Makefile @@ -1,8 +1,8 @@ TOP_DIR = ../.. OUT_DIR = $(TOP_DIR)/public +TEXT_FILES = md org -text_files = md org -text_patterns = $(foreach ext,$(text_files),'$(TOP_DIR)/**.$(ext)') +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))