diff options
author | Christian Hesse <mail@eworm.de> | 2022-02-19 14:13:23 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2022-02-20 23:38:21 +0100 |
commit | 886cd67edba86906fea4c0d753b13b7c68c5e78b (patch) | |
tree | e7a81586ffbcce120d3af26b34f614d4b8e9e5f6 | |
parent | 6f27553f15787540a7b4bc353d89aa4d3d268830 (diff) |
Makefile: match all *.md files, incl. doc/mod/
-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) |