From a71e4c220fae76dc6bdcd552c3f7c30b200e30a7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=84=B8=ED=9D=AC/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Principal=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Thu, 19 Apr 2018 09:11:38 +0900 Subject: [PATCH] Separate acl build and install step (#785) This will separate acl library build and install step in Makefile - this is needed for only want to copy libraries after make clean - there is no change for 'make acl' Signed-off-by: SaeHie Park --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 967a9d0..067f8d2 100644 --- a/Makefile +++ b/Makefile @@ -85,7 +85,7 @@ install: $(TIMESTAMP_INSTALL) clean: rm -rf $(WORKDIR) -acl: internal_acl +acl: internal_acl_build internal_acl_install check: check_internal @@ -119,8 +119,10 @@ install_internal: ln -s $(INSTALL_FOLDER) $(INSTALL_ALIAS) touch $(TIMESTAMP_INSTALL) -internal_acl: +internal_acl_build: cd $(ACL_FOLDER) && $(ACL_COMMAND) + +internal_acl_install: @mkdir -vp $(INSTALL_PATH)/lib @cp -v $(ACL_FOLDER)/build/libarm_compute_core.so $(INSTALL_PATH)/lib/. @cp -v $(ACL_FOLDER)/build/libarm_compute_graph.so $(INSTALL_PATH)/lib/. -- 2.7.4