diff options
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 4 |
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) |