summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
author오형석/동작제어Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>2018-07-11 14:25:52 +0900
committer이춘석/동작제어Lab(SR)/Staff Engineer/삼성전자 <chunseok.lee@samsung.com>2018-07-11 14:25:52 +0900
commite928e23812038e4bbd9306aee2e551d862390ab5 (patch)
tree208111686a1320b68a3d11382bc76a9517eb83c5 /Makefile
parente22505b76995d04b746abcb332d1730e7394fd5f (diff)
downloadnnfw-e928e23812038e4bbd9306aee2e551d862390ab5.tar.gz
nnfw-e928e23812038e4bbd9306aee2e551d862390ab5.tar.bz2
nnfw-e928e23812038e4bbd9306aee2e551d862390ab5.zip
Fix makefile for svace (#1945)
Fix build runtime only: build pure runtime Fix testbuild: remove kernelacl_test Fix tflite build: add googletest Signed-off-by: Hyeongseok Oh <hseok82.oh@samsung.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 0b78d91c2..376a2c042 100644
--- a/Makefile
+++ b/Makefile
@@ -224,7 +224,7 @@ build_coverage_suite: install_internal
@mv coverage-suite.tar.gz $(INSTALL_ROOT)/.
runtime_build_internal: $(BUILD_ROOT)
- cd $(BUILD_ROOT) && make -j $(NPROCS) runtime
+ cd $(BUILD_ROOT) && make -j $(NPROCS) nnapi_pure_arm_compute
rm -rf $(BUILD_ALIAS)
ln -s $(BUILD_FOLDER) $(BUILD_ALIAS)
touch $(TIMESTAMP_BUILD)
@@ -233,14 +233,14 @@ test_build_internal: $(BUILD_ROOT)
# Build test
cd $(BUILD_ROOT) && make -j $(NPROCS) nnapi_test
# Build unittest
- cd $(BUILD_ROOT) && make -j $(NPROCS) kernelacl_test runtime_run_android_nn_test
+ cd $(BUILD_ROOT) && make -j $(NPROCS) runtime_run_android_nn_test
rm -rf $(BUILD_ALIAS)
ln -s $(BUILD_FOLDER) $(BUILD_ALIAS)
touch $(TIMESTAMP_BUILD)
tflite_build_internal: $(BUILD_ROOT)
# Build test
- cd $(BUILD_ROOT) && make -j $(NPROCS) tensorflow-lite
+ cd $(BUILD_ROOT) && make -j $(NPROCS) tensorflow-lite googletest
rm -rf $(BUILD_ALIAS)
ln -s $(BUILD_FOLDER) $(BUILD_ALIAS)
touch $(TIMESTAMP_BUILD)