New upstream version 18.02
[deb_dpdk.git] / drivers / net / mlx4 / Makefile
1 #   BSD LICENSE
2 #
3 #   Copyright 2012 6WIND S.A.
4 #   Copyright 2012 Mellanox
5 #
6 #   Redistribution and use in source and binary forms, with or without
7 #   modification, are permitted provided that the following conditions
8 #   are met:
9 #
10 #     * Redistributions of source code must retain the above copyright
11 #       notice, this list of conditions and the following disclaimer.
12 #     * Redistributions in binary form must reproduce the above copyright
13 #       notice, this list of conditions and the following disclaimer in
14 #       the documentation and/or other materials provided with the
15 #       distribution.
16 #     * Neither the name of 6WIND S.A. nor the names of its
17 #       contributors may be used to endorse or promote products derived
18 #       from this software without specific prior written permission.
19 #
20 #   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 #   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 #   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 #   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 #   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 #   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 #   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 #   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 #   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 #   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 #   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
32 include $(RTE_SDK)/mk/rte.vars.mk
33
34 # Library name.
35 LIB = librte_pmd_mlx4.a
36 LIB_GLUE = $(LIB_GLUE_BASE).$(LIB_GLUE_VERSION)
37 LIB_GLUE_BASE = librte_pmd_mlx4_glue.so
38 LIB_GLUE_VERSION = 18.02.0
39
40 # Sources.
41 SRCS-$(CONFIG_RTE_LIBRTE_MLX4_PMD) += mlx4.c
42 SRCS-$(CONFIG_RTE_LIBRTE_MLX4_PMD) += mlx4_ethdev.c
43 SRCS-$(CONFIG_RTE_LIBRTE_MLX4_PMD) += mlx4_flow.c
44 ifneq ($(CONFIG_RTE_LIBRTE_MLX4_DLOPEN_DEPS),y)
45 SRCS-$(CONFIG_RTE_LIBRTE_MLX4_PMD) += mlx4_glue.c
46 endif
47 SRCS-$(CONFIG_RTE_LIBRTE_MLX4_PMD) += mlx4_intr.c
48 SRCS-$(CONFIG_RTE_LIBRTE_MLX4_PMD) += mlx4_mr.c
49 SRCS-$(CONFIG_RTE_LIBRTE_MLX4_PMD) += mlx4_rxq.c
50 SRCS-$(CONFIG_RTE_LIBRTE_MLX4_PMD) += mlx4_rxtx.c
51 SRCS-$(CONFIG_RTE_LIBRTE_MLX4_PMD) += mlx4_txq.c
52 SRCS-$(CONFIG_RTE_LIBRTE_MLX4_PMD) += mlx4_utils.c
53
54 ifeq ($(CONFIG_RTE_LIBRTE_MLX4_DLOPEN_DEPS),y)
55 INSTALL-$(CONFIG_RTE_LIBRTE_MLX4_PMD)-lib += $(LIB_GLUE)
56 endif
57
58 # Basic CFLAGS.
59 CFLAGS += -O3
60 CFLAGS += -std=c11 -Wall -Wextra
61 CFLAGS += -g
62 CFLAGS += -I.
63 CFLAGS += -D_BSD_SOURCE
64 CFLAGS += -D_DEFAULT_SOURCE
65 CFLAGS += -D_XOPEN_SOURCE=600
66 CFLAGS += $(WERROR_FLAGS)
67 ifeq ($(CONFIG_RTE_LIBRTE_MLX4_DLOPEN_DEPS),y)
68 CFLAGS += -DMLX4_GLUE='"$(LIB_GLUE)"'
69 CFLAGS += -DMLX4_GLUE_VERSION='"$(LIB_GLUE_VERSION)"'
70 CFLAGS_mlx4_glue.o += -fPIC
71 LDLIBS += -ldl
72 else
73 LDLIBS += -libverbs -lmlx4
74 endif
75 LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
76 LDLIBS += -lrte_ethdev -lrte_net -lrte_kvargs
77 LDLIBS += -lrte_bus_pci
78
79 # A few warnings cannot be avoided in external headers.
80 CFLAGS += -Wno-error=cast-qual
81
82 EXPORT_MAP := rte_pmd_mlx4_version.map
83 LIBABIVER := 1
84
85 # DEBUG which is usually provided on the command-line may enable
86 # CONFIG_RTE_LIBRTE_MLX4_DEBUG.
87 ifeq ($(DEBUG),1)
88 CONFIG_RTE_LIBRTE_MLX4_DEBUG := y
89 endif
90
91 # User-defined CFLAGS.
92 ifeq ($(CONFIG_RTE_LIBRTE_MLX4_DEBUG),y)
93 CFLAGS += -pedantic -UNDEBUG -DPEDANTIC
94 else
95 CFLAGS += -DNDEBUG -UPEDANTIC
96 endif
97
98 ifdef CONFIG_RTE_LIBRTE_MLX4_TX_MP_CACHE
99 CFLAGS += -DMLX4_PMD_TX_MP_CACHE=$(CONFIG_RTE_LIBRTE_MLX4_TX_MP_CACHE)
100 endif
101
102 include $(RTE_SDK)/mk/rte.lib.mk
103
104 # Generate and clean-up mlx4_autoconf.h.
105
106 export CC CFLAGS CPPFLAGS EXTRA_CFLAGS EXTRA_CPPFLAGS
107 export AUTO_CONFIG_CFLAGS = -Wno-error
108
109 ifndef V
110 AUTOCONF_OUTPUT := >/dev/null
111 endif
112
113 mlx4_autoconf.h.new: FORCE
114
115 mlx4_autoconf.h.new: $(RTE_SDK)/buildtools/auto-config-h.sh
116         $Q $(RM) -f -- '$@'
117         $Q : > '$@'
118
119 # Create mlx4_autoconf.h or update it in case it differs from the new one.
120
121 mlx4_autoconf.h: mlx4_autoconf.h.new
122         $Q [ -f '$@' ] && \
123                 cmp '$<' '$@' $(AUTOCONF_OUTPUT) || \
124                 mv '$<' '$@'
125
126 $(SRCS-$(CONFIG_RTE_LIBRTE_MLX4_PMD):.c=.o): mlx4_autoconf.h
127
128 # Generate dependency plug-in for rdma-core when the PMD must not be linked
129 # directly, so that applications do not inherit this dependency.
130
131 ifeq ($(CONFIG_RTE_LIBRTE_MLX4_DLOPEN_DEPS),y)
132
133 $(LIB): $(LIB_GLUE)
134
135 $(LIB_GLUE): mlx4_glue.o
136         $Q $(LD) $(LDFLAGS) $(EXTRA_LDFLAGS) \
137                 -Wl,-h,$(LIB_GLUE) \
138                 -s -shared -o $@ $< -libverbs -lmlx4
139
140 mlx4_glue.o: mlx4_autoconf.h
141
142 endif
143
144 clean_mlx4: FORCE
145         $Q rm -f -- mlx4_autoconf.h mlx4_autoconf.h.new
146         $Q rm -f -- mlx4_glue.o $(LIB_GLUE_BASE)*
147
148 clean: clean_mlx4