diff Makefile @ 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 a6c9129e5948
children 7fbf3171ca15
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)