From: kfezer Date: Wed, 22 Nov 2017 20:41:36 +0000 (-0800) Subject: Update Makefile to include an API make X-Git-Tag: accepted/tizen/unified/20191125.223343~14^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=691eb0c0df42e5f1b10abda8b9a61c17e8833633;p=platform%2Fadaptation%2Fnpu%2Fintel-libmvnc.git Update Makefile to include an API make The intent of this pull is to streamline the API only make instructions to include it as an option in the download itself. --- diff --git a/Makefile b/Makefile index 96f59c5..b395f65 100644 --- a/Makefile +++ b/Makefile @@ -11,6 +11,7 @@ help: @echo " make help - shows this message" @echo " make install - Installs the ncsdk." @echo " make examples - makes the ncsdk examples." + @echo " make api - installs only the api. Ideal for RPi setup." @echo " make uninstall - uninstalls the ncsdk." @echo " make clean - removes targets and intermediate files." @@ -55,7 +56,11 @@ examples: prereqs opencv runexamples: prereqs opencv @echo "\nmake examples starting." (cd examples; make run) - + +.PHONY: api +api: @echo "\nmake api starting." + (cd api/src; make; make install) + .PHONY: clean clean: @echo "\nmake clean starting."