dotfiles/Fortune/Makefile

15 lines
217 B
Makefile

# Makefile
# Eryn Wells <eryn@erynwells.me>
STRFILE != which strfile
DATFILES := eryn.dat
.SUFFIXES : .dat .txt
.txt.dat :
$(STRFILE) $(.IMPSRC) $(.TARGET)
all : $(DATFILES)
clean : .PHONY
rm -f $(DATFILES)