diff options
author | 오형석/동작제어Lab(SR)/Senior Engineer/삼성전자 <hseok82.oh@samsung.com> | 2018-04-24 19:10:51 +0900 |
---|---|---|
committer | 서상민/동작제어Lab(SR)/Senior Engineer/삼성전자 <sangmin7.seo@samsung.com> | 2018-04-24 19:10:51 +0900 |
commit | d9c7924face9f31bfceb53e1fd1799c8fdd549e0 (patch) | |
tree | eeb6299d76cf99d2306717e262bdb3d27ad159ff /Makefile | |
parent | c7acc2fd3e873eb9e0cdee0a10598259e4014a17 (diff) | |
download | nnfw-d9c7924face9f31bfceb53e1fd1799c8fdd549e0.tar.gz nnfw-d9c7924face9f31bfceb53e1fd1799c8fdd549e0.tar.bz2 nnfw-d9c7924face9f31bfceb53e1fd1799c8fdd549e0.zip |
Make option: runtime build only (#864)
Introduce new make option: runtime build only
Can build runtime only by "make runtime"
Signed-off-by: Hyeongseok Oh <hseok82.oh@samsung.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -93,6 +93,8 @@ acl: internal_acl_build internal_acl_install check: check_internal +runtime: runtime_build_internal + ### ### Command (internal) ### @@ -167,6 +169,12 @@ build_coverage_suite: install_internal @rm -rf include_lists.txt @mv coverage-suite.tar.gz $(INSTALL_ROOT)/. +runtime_build_internal: $(BUILD_ROOT) + cd $(BUILD_ROOT) && make -j $(NPROCS) runtime + rm -rf $(BUILD_ALIAS) + ln -s $(BUILD_FOLDER) $(BUILD_ALIAS) + touch $(TIMESTAMP_BUILD) + ### ### Timestamps ### |