diff options
author | Christian Hesse <mail@eworm.de> | 2022-02-19 14:13:23 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2022-02-21 12:44:28 +0100 |
commit | 06bdce1378f717d4f5c3bb61f5d560cb334f82fc (patch) | |
tree | 8a69396c5341d8f4e7188ce755d271867fdc2bec | |
parent | 17b3e04d4141072a650b877ac601a6ac7fe0a800 (diff) |
Makefile: match all *.md files, incl. doc/mod/
(cherry picked from commit 886cd67edba86906fea4c0d753b13b7c68c5e78b)
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6,7 +6,7 @@ TEMPLATE = $(wildcard *.template) CAPSMAN = $(TEMPLATE:.template=.capsman) LOCAL = $(TEMPLATE:.template=.local) -MARKDOWN = $(wildcard *.md) $(wildcard doc/*.md) +MARKDOWN = $(wildcard *.md doc/*.md doc/mod/*.md) HTML = $(MARKDOWN:.md=.html) all: $(CAPSMAN) $(LOCAL) $(HTML) |