# postcard CSC = csc PREFIX = /usr PROGS = postcard mailbox .SUFFIXES: .SUFFIXES: .scm .o all: $(PROGS) .scm: $(CSC) -o $@ $< .PHONY: install clean install: $(PROGS) install -Dt $(DESTDIR)$(PREFIX)/bin $? clean: -rm -f $(PROGS) *.o