# HG changeset patch # User William Astle # Date 1532475664 21600 # Node ID ad0efd5835c302a14136b2a2c395adc5b6725ff7 # Parent 2c1c5dd84024da89e64fdfbcdcd043d6a98e8732 Cause "make install" to trigger builds for the binaries if needed The Makefile was missing dependency information on the install target so doing "make install" on a clean tree wouldn't build the binaries. Added dependency information. diff -r 2c1c5dd84024 -r ad0efd5835c3 Makefile --- a/Makefile Mon Jul 23 17:45:18 2018 -0600 +++ b/Makefile Tue Jul 24 17:41:04 2018 -0600 @@ -136,7 +136,7 @@ @echo $* = $($*) .PHONY: install -install: +install: $(MAIN_TARGETS) install -d $(INSTALLDIR) install $(MAIN_TARGETS) $(INSTALLDIR)