From: 오형석/On-Device Lab(SR)/Staff Engineer/삼성전자 Date: Wed, 13 Mar 2019 10:52:11 +0000 (+0900) Subject: Remove testbuild in Makefile (#4693) X-Git-Tag: submit/tizen/20190325.013700~70 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=18c6af8c24bf10c1b43a1bb06ed81f5f8bfd0de2;p=platform%2Fcore%2Fml%2Fnnfw.git Remove testbuild in Makefile (#4693) Remove deprecated build option testbuild Now svace and coverity use make all Signed-off-by: Hyeongseok Oh --- diff --git a/Makefile b/Makefile index 9fd12d6..0d2f8fe 100644 --- a/Makefile +++ b/Makefile @@ -116,8 +116,6 @@ distclean: runtime: runtime_build_internal -testbuild: test_build_internal - tflite: tflite_build_internal ### @@ -169,16 +167,6 @@ runtime_build_internal: $(BUILD_ROOT) ln -s $(BUILD_FOLDER) $(BUILD_ALIAS) touch $(TIMESTAMP_BUILD) -test_build_internal: $(BUILD_ROOT) - # Build test - cd $(BUILD_ROOT) && make -j $(NPROCS) nnapi_test - cd $(BUILD_ROOT) && make -j $(NPROCS) tflite_benchmark - # Build unittest - cd $(BUILD_ROOT) && make -j $(NPROCS) nnapi_gtest - 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 gtest_main