1Makefile: do not force the release build on install 2 3If we did build any of the other targets, and are just interested 4in those and not the release one, we still want to use the 'install' 5rule, but not build (and install) the release libraries. 6 7So, remove the dependency on the 'release' target from the 'install' 8rule. 9 10Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> 11 12diff -durN am335x-pru-package-506e074859891a2b350eb4f5fcb451c4961410ea.orig/pru_sw/app_loader/interface/Makefile am335x-pru-package-506e074859891a2b350eb4f5fcb451c4961410ea/pru_sw/app_loader/interface/Makefile 13--- am335x-pru-package-506e074859891a2b350eb4f5fcb451c4961410ea.orig/pru_sw/app_loader/interface/Makefile 2014-08-18 00:24:36.000000000 +0200 14+++ am335x-pru-package-506e074859891a2b350eb4f5fcb451c4961410ea/pru_sw/app_loader/interface/Makefile 2014-10-12 11:39:17.144682697 +0200 15@@ -38,7 +38,7 @@ 16 17 all: debug release sodebug sorelease 18 19-install: release 20+install: 21 install -m 0755 -d $(DESTDIR)$(PREFIX)/lib 22 install -m 0755 -d $(DESTDIR)$(PREFIX)/include 23 install -m 0644 $(LIBDIR)/* $(DESTDIR)$(PREFIX)/lib 24