]> git.droids-corp.org - dpdk.git/blobdiff - examples/ip_pipeline/Makefile
examples/ip_pipeline: add action profile objects
[dpdk.git] / examples / ip_pipeline / Makefile
index 35e43022285bade200e729c9756f21b2c39084d1..d9c8d86f4d6e6569c7b19fe56aefc666bd6973e9 100644 (file)
@@ -5,13 +5,16 @@
 APP = ip_pipeline
 
 # all source are stored in SRCS-y
-SRCS-y := cli.c
+SRCS-y := action.c
+SRCS-y += cli.c
 SRCS-y += conn.c
+SRCS-y += kni.c
 SRCS-y += link.c
 SRCS-y += main.c
 SRCS-y += mempool.c
 SRCS-y += parser.c
 SRCS-y += swq.c
+SRCS-y += tap.c
 SRCS-y += tmgr.c
 #SRCS-y += thread.c
 
@@ -67,6 +70,7 @@ INC += $(sort $(wildcard *.h))
 
 SRCS-$(CONFIG_RTE_LIBRTE_PIPELINE) := $(SRCS-y)
 
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 CFLAGS += -I$(SRCDIR)
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)