New upstream version 18.02
[deb_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_passthrough_be.c
23 SRCS-y += pipeline_passthrough.c
24 SRCS-y += pipeline_firewall_be.c
25 SRCS-y += pipeline_firewall.c
26 SRCS-y += pipeline_flow_classification_be.c
27 SRCS-y += pipeline_flow_classification.c
28 SRCS-y += pipeline_flow_actions_be.c
29 SRCS-y += pipeline_flow_actions.c
30 SRCS-y += pipeline_routing_be.c
31 SRCS-y += pipeline_routing.c
32
33 # Build using pkg-config variables if possible
34 $(shell pkg-config --exists libdpdk)
35 ifeq ($(.SHELLSTATUS),0)
36
37 all: shared
38 .PHONY: shared static
39 shared: build/$(APP)-shared
40         ln -sf $(APP)-shared build/$(APP)
41 static: build/$(APP)-static
42         ln -sf $(APP)-static build/$(APP)
43
44 PC_FILE := $(shell pkg-config --path libdpdk)
45 CFLAGS += -O3 $(shell pkg-config --cflags libdpdk)
46 LDFLAGS_SHARED = $(shell pkg-config --libs libdpdk)
47 LDFLAGS_STATIC = -Wl,-Bstatic $(shell pkg-config --static --libs libdpdk)
48
49 VPATH += pipeline
50 CFLAGS += -I. -I./pipeline/
51
52 OBJS := $(patsubst %.c,build/%.o,$(SRCS-y))
53
54 build/%.o: %.c Makefile $(PC_FILE) | build
55         $(CC) $(CFLAGS) -c $< -o $@
56
57 build/$(APP)-shared: $(OBJS)
58         $(CC) $(OBJS) -o $@ $(LDFLAGS) $(LDFLAGS_SHARED)
59
60 build/$(APP)-static: $(OBJS)
61         $(CC) $(OBJS) -o $@ $(LDFLAGS) $(LDFLAGS_STATIC)
62
63 build:
64         @mkdir -p $@
65
66 .PHONY: clean
67 clean:
68         rm -f build/$(APP)* build/*.o
69         rmdir --ignore-fail-on-non-empty build
70
71 else
72
73 ifeq ($(RTE_SDK),)
74 $(error "Please define RTE_SDK environment variable")
75 endif
76
77 VPATH += $(SRCDIR)/pipeline
78
79 # Default target, can be overridden by command line or environment
80 RTE_TARGET ?= x86_64-native-linuxapp-gcc
81
82 include $(RTE_SDK)/mk/rte.vars.mk
83
84 INC += $(sort $(wildcard *.h)) $(sort $(wildcard pipeline/*.h))
85
86 SRCS-$(CONFIG_RTE_LIBRTE_PIPELINE) := $(SRCS-y)
87
88 CFLAGS += -I$(SRCDIR) -I$(SRCDIR)/pipeline
89 CFLAGS += -O3
90 CFLAGS += $(WERROR_FLAGS) -Wno-error=unused-function -Wno-error=unused-variable
91
92 include $(RTE_SDK)/mk/rte.extapp.mk
93
94 endif