comparison 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
comparison
equal deleted inserted replaced
470:2c1c5dd84024 471:ad0efd5835c3
134 134
135 print-%: 135 print-%:
136 @echo $* = $($*) 136 @echo $* = $($*)
137 137
138 .PHONY: install 138 .PHONY: install
139 install: 139 install: $(MAIN_TARGETS)
140 install -d $(INSTALLDIR) 140 install -d $(INSTALLDIR)
141 install $(MAIN_TARGETS) $(INSTALLDIR) 141 install $(MAIN_TARGETS) $(INSTALLDIR)
142 142
143 .PHONY: test 143 .PHONY: test
144 test: all test/runtests 144 test: all test/runtests