dotfiles/Fortune/Makefile

17 lines
154 B
Makefile
Raw Normal View History

STRFILE=strfile
DATFILES=eryn.dat
.PHONY: all clean
%.dat: %
$(STRFILE) $^ $@
.PHONY: all
all: $(DATFILES)
.PHONY: clean
clean:
rm -f $(DATFILES)