Mercurial > ~dholland > hg > swallowtail > index.cgi
view mk/script.mk @ 22:8870309149f8
add a descriptive comment
author | David A. Holland |
---|---|
date | Sun, 26 May 2013 17:24:13 -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