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) $< $@ .PHONY: all