From 47c3c559c788097e570260e6aacdf90852b6fba7 Mon Sep 17 00:00:00 2001 From: Suleyman Farajli Date: Thu, 13 Feb 2025 13:55:57 +0400 Subject: Makefile: variable name changed: `SRC` -> `MARKDOWN` --- GNUmakefile | 4 ++-- 1 file 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) -- cgit v1.2.3