From d50dee61238d747791121b820b5f37b06ae6bcad Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Tue, 9 Feb 2016 09:22:58 -0800 Subject: [PATCH] avoid building .dat from sigtemplate.txt files --- signature_stuff/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/signature_stuff/Makefile b/signature_stuff/Makefile index 1c1676f..925ae97 100644 --- a/signature_stuff/Makefile +++ b/signature_stuff/Makefile @@ -1,5 +1,5 @@ -all: $(patsubst %.txt,%.txt.dat,$(wildcard *.txt)) +all: $(foreach file,$(filter-out %sigtemplate.txt,$(wildcard *.txt)),$(file).dat) STRFILE=$(shell if which strfile >/dev/null 2>&1; then which strfile; else echo touch -r; fi) -- 2.39.2