blob: e9f44d3397d062312da8f296955c5c9afe1a169b [file] [log] [blame]
Nathan Skrzypczakcbb4e462021-10-13 12:40:42 +02001CXXFLAGS:=-std=c++14 -Wextra -Wall -g -O2
2CXXFLAGS+= -Wno-unused-parameter
3#CXXFLAGS+= -O0
4LDFLAGS:=-g
5LDLIBS:=-lvapiclient
6# Customize the lines below if VPP headers and libraries are in non-standard paths
7#CXXFLAGS+= -I/your/vpp/build-root/install-vpp_debug-native/vpp/include
8#LDFLAGS+= -Wl,-rpath,/your/vpp/build-root/install-vpp_debug-native/vpp/lib
9#LDFLAGS+= -L/your/vpp/build-root/install-vpp_debug-native/vpp/lib
10
11all: api_example
12
13clean:
14 $(RM) api_example
15
16.PHONY: all clean