aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEtienne Carriere2019-02-07 03:44:28 -0600
committerJérôme Forissier2019-02-07 04:04:53 -0600
commit3f28557f972b9840cf4453665d0f2f3240a5eca8 (patch)
tree3d5fee12bf34c0a69c1d74af6592d4208630923b
parentc56b7517ae468c420b8e9dbce6961c1bb44cd6fa (diff)
downloadti-optee-client-3f28557f972b9840cf4453665d0f2f3240a5eca8.tar.gz
ti-optee-client-3f28557f972b9840cf4453665d0f2f3240a5eca8.tar.xz
ti-optee-client-3f28557f972b9840cf4453665d0f2f3240a5eca8.zip
Makefile: default install client libs and headers in /usr
Change default install path for the libraries and their header files to locate them in /usr/lib and /usr/include which are more generic than /lib and /include as used prior this change. Signed-off-by: Etienne Carriere <etienne.carriere@linaro.org> Acked-by: Jerome Forissier <jerome.forissier@linaro.org> Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org>
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index cbc5b04a..7aed8491 100644
--- a/Makefile
+++ b/Makefile
@@ -12,9 +12,9 @@ export VPREFIX
12 12
13EXPORT_DIR ?= $(O)/export 13EXPORT_DIR ?= $(O)/export
14DESTDIR ?= $(EXPORT_DIR) 14DESTDIR ?= $(EXPORT_DIR)
15LIBDIR ?= /lib
16INCLUDEDIR ?= /include
17SBINDIR ?= /usr/sbin 15SBINDIR ?= /usr/sbin
16LIBDIR ?= /usr/lib
17INCLUDEDIR ?= /usr/include
18 18
19CFG_TA_GPROF_SUPPORT ?= n 19CFG_TA_GPROF_SUPPORT ?= n
20 20