changeset 471:ad0efd5835c3

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.
author William Astle <lost@l-w.ca>
date Tue, 24 Jul 2018 17:41:04 -0600
parents 2c1c5dd84024
children e97f9a302c6a
files Makefile
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)