summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSuleyman Farajli <suleyman@farajli.net>2025-02-13 13:55:57 +0400
committerSuleyman Farajli <suleyman@farajli.net>2025-02-13 13:55:57 +0400
commit47c3c559c788097e570260e6aacdf90852b6fba7 (patch)
tree169369c4f8ac2c2b05df355ba94d857b4510eb9d
parent131e8e88420df91b0a550c86f1adfe7e9c413560 (diff)
Makefile: variable name changed: `SRC` -> `MARKDOWN`
-rw-r--r--GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 5213cfc..26ca3e9 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -1,5 +1,5 @@
-SRC = $(shell find . -name '*.md')
-HTML = $(patsubst ./%.md, %.html, $(SRC))
+MARKDOWN = $(shell find . -name '*.md')
+HTML = $(patsubst ./%.md, %.html, $(MARKDOWN))
all: $(HTML)