# Makefile to create the html version from the .txt NOTENUM = 017 PAGE = Note-$(NOTENUM).html SOURCE = Note-$(NOTENUM).txt TOOLBIN = ${STOLFIHOME}/bin all: $(PAGE) $(PAGE): $(SOURCE) $(TOOLBIN)/make-page-from-text-file $(TOOLBIN)/make-page-from-text-file \ -bgcolor 'ffffee' \ -title 'Note $(NOTENUM)' \ < $(SOURCE) \ > $(PAGE)