diff options
author | Christian Hesse <mail@eworm.de> | 2023-08-07 12:19:18 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2023-08-07 22:10:44 +0200 |
commit | 0f787f9b030408fd2500bb036ff5816df27012b0 (patch) | |
tree | aafb8f85b2e1c4141ba98ecda180fc7b22ad621e | |
parent | 14dcea23b27a6cc43c01311535cc657c44e1179d (diff) |
Makefile: only regenerate existing scripts from templates
-rw-r--r-- | Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -2,10 +2,9 @@ # template scripts -> final scripts # markdown files -> html files -TEMPLATE = $(wildcard *.template.rsc) -CAPSMAN = $(TEMPLATE:.template.rsc=.capsman.rsc) -LOCAL = $(TEMPLATE:.template.rsc=.local.rsc) -WIFIWAVE2 = $(TEMPLATE:.template.rsc=.wifiwave2.rsc) +CAPSMAN = $(wildcard *.capsman.rsc) +LOCAL = $(wildcard *.local.rsc) +WIFIWAVE2 = $(wildcard *.wifiwave2.rsc) MARKDOWN = $(wildcard *.md doc/*.md doc/mod/*.md) HTML = $(MARKDOWN:.md=.html) |