Mercurial > ~dholland > hg > swallowtail > index.cgi
view mk/script.mk @ 23:ca4679ac4e02
typo in comment
author | David A. Holland |
---|---|
date | Sun, 26 May 2013 18:33:06 -0400 |
parents | 5f36d8d69aba |
children | 813a27f32072 |
line wrap: on
line source
.SUFFIXES: .py .pl .sh PROG=$(SCRIPT:R)$(BINSUFFIX) all: $(PROG) $(PROG): $(SCRIPT) $(SED) -f $(TOP)/config.sed < $(SCRIPT) > $@.new mv -f $@.new $@ depend: ; install: $(INSTALL) -c $(PROG) $(DESTDIR)$(PREFIX)/$(BINDIR)/$(PROG) clean distclean: rm -f $(PROG) $(PROG).new .PHONY: all depend install clean distclean