1 2 3 4 5 6 7 8 9 10 11
PREFIX ?= /usr/local qotd: qotd.scm csc $< -o $@ .PHONY: install uninstall install: qotd install -D $< $(PREFIX)/bin/$< uninstall: rm -f $(PREFIX)/bin/$<