examples/ip_pipeline: remove routing pipeline
[dpdk.git] / examples / ip_pipeline / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2010-2014 Intel Corporation
3
4 # binary name
5 APP = ip_pipeline
6
7 # all source are stored in SRCS-y
8 SRCS-y := main.c
9 SRCS-y += config_parse.c
10 SRCS-y += parser.c
11 SRCS-y += config_parse_tm.c
12 SRCS-y += config_check.c
13 SRCS-y += init.c
14 SRCS-y += thread.c
15 SRCS-y += thread_fe.c
16 SRCS-y += cpu_core_map.c
17
18 SRCS-y += pipeline_common_be.c
19 SRCS-y += pipeline_common_fe.c
20 SRCS-y += pipeline_master_be.c
21 SRCS-y += pipeline_master.c
22 SRCS-y += pipeline_firewall_be.c
23 SRCS-y += pipeline_firewall.c
24 SRCS-y += pipeline_flow_classification_be.c
25 SRCS-y += pipeline_flow_classification.c
26 SRCS-y += pipeline_flow_actions_be.c
27 SRCS-y += pipeline_flow_actions.c
28
29 # Build using pkg-config variables if possible
30 $(shell pkg-config --exists libdpdk)
31 ifeq ($(.SHELLSTATUS),0)
32
33 all: shared
34 .PHONY: shared static
35 shared: build/$(APP)-shared
36         ln -sf $(APP)-shared build/$(APP)
37 static: build/$(APP)-static
38         ln -sf $(APP)-static build/$(APP)
39
40 PC_FILE := $(shell pkg-config --path libdpdk)
41 CFLAGS += -O3 $(shell pkg-config --cflags libdpdk)
42 LDFLAGS_SHARED = $(shell pkg-config --libs libdpdk)
43 LDFLAGS_STATIC = -Wl,-Bstatic $(shell pkg-config --static --libs libdpdk)
44
45 VPATH += pipeline
46 CFLAGS += -I. -I./pipeline/
47 CFLAGS += -DALLOW_EXPERIMENTAL_API
48
49 OBJS := $(patsubst %.c,build/%.o,$(SRCS-y))
50
51 build/%.o: %.c Makefile $(PC_FILE) | build
52         $(CC) $(CFLAGS) -c $< -o $@
53
54 build/$(APP)-shared: $(OBJS)
55         $(CC) $(OBJS) -o $@ $(LDFLAGS) $(LDFLAGS_SHARED)
56
57 build/$(APP)-static: $(OBJS)
58         $(CC) $(OBJS) -o $@ $(LDFLAGS) $(LDFLAGS_STATIC)
59
60 build:
61         @mkdir -p $@
62
63 .PHONY: clean
64 clean:
65         rm -f build/$(APP)* build/*.o
66         rmdir --ignore-fail-on-non-empty build
67
68 else
69
70 ifeq ($(RTE_SDK),)
71 $(error "Please define RTE_SDK environment variable")
72 endif
73
74 VPATH += $(SRCDIR)/pipeline
75
76 # Default target, can be overridden by command line or environment
77 RTE_TARGET ?= x86_64-native-linuxapp-gcc
78
79 include $(RTE_SDK)/mk/rte.vars.mk
80
81 INC += $(sort $(wildcard *.h)) $(sort $(wildcard pipeline/*.h))
82
83 SRCS-$(CONFIG_RTE_LIBRTE_PIPELINE) := $(SRCS-y)
84
85 CFLAGS += -I$(SRCDIR) -I$(SRCDIR)/pipeline
86 CFLAGS += -O3
87 CFLAGS += $(WERROR_FLAGS) -Wno-error=unused-function -Wno-error=unused-variable
88 CFLAGS += -DALLOW_EXPERIMENTAL_API
89
90 include $(RTE_SDK)/mk/rte.extapp.mk
91
92 endif