diff options
author | Nathan Skrzypczak <nathan.skrzypczak@gmail.com> | 2021-10-13 12:40:42 +0200 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2021-10-13 23:22:32 +0000 |
commit | cbb4e460c481223282774b37add0bf9fb9e6170a (patch) | |
tree | c4d6490e725806088e397bf7bc0daf05e4ab5374 /docs/interfacing/cpp/api_example/Makefile | |
parent | 9ad39c026c8a3c945a7003c4aa4f5cb1d4c80160 (diff) |
docs: C & C++ apis examples
Type: docs
Change-Id: I5b6c388332bdd3a29777d728c3357816c8411ea2
Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com>
Diffstat (limited to 'docs/interfacing/cpp/api_example/Makefile')
-rw-r--r-- | docs/interfacing/cpp/api_example/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/interfacing/cpp/api_example/Makefile b/docs/interfacing/cpp/api_example/Makefile new file mode 100644 index 00000000000..e9f44d3397d --- /dev/null +++ b/docs/interfacing/cpp/api_example/Makefile @@ -0,0 +1,16 @@ +CXXFLAGS:=-std=c++14 -Wextra -Wall -g -O2 +CXXFLAGS+= -Wno-unused-parameter +#CXXFLAGS+= -O0 +LDFLAGS:=-g +LDLIBS:=-lvapiclient +# Customize the lines below if VPP headers and libraries are in non-standard paths +#CXXFLAGS+= -I/your/vpp/build-root/install-vpp_debug-native/vpp/include +#LDFLAGS+= -Wl,-rpath,/your/vpp/build-root/install-vpp_debug-native/vpp/lib +#LDFLAGS+= -L/your/vpp/build-root/install-vpp_debug-native/vpp/lib + +all: api_example + +clean: + $(RM) api_example + +.PHONY: all clean |