X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=signature_stuff%2FMakefile;h=1c1676f401bdd885b0066fb9ac42edaf66f64d4a;hb=551b16ff412a0204e2a86aa60aea2e91e7c3b9a4;hp=bef1532c1e50c742ef44a460ac817f4fa5ffcdb2;hpb=2815d7ed754a1632c7fb1e5e4f18557661ee7fc7;p=lib.git diff --git a/signature_stuff/Makefile b/signature_stuff/Makefile index bef1532..1c1676f 100644 --- a/signature_stuff/Makefile +++ b/signature_stuff/Makefile @@ -1,7 +1,9 @@ all: $(patsubst %.txt,%.txt.dat,$(wildcard *.txt)) +STRFILE=$(shell if which strfile >/dev/null 2>&1; then which strfile; else echo touch -r; fi) + %.txt.dat: %.txt - strfile $< $@ + $(STRFILE) $< $@ -.PHONY: all \ No newline at end of file +.PHONY: all