mem: move librte_malloc to eal/common
[dpdk.git] / drivers / net / mlx4 / Makefile
1 #   BSD LICENSE
2 #
3 #   Copyright 2012-2015 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
37 # Sources.
38 SRCS-$(CONFIG_RTE_LIBRTE_MLX4_PMD) += mlx4.c
39
40 # Dependencies.
41 DEPDIRS-$(CONFIG_RTE_LIBRTE_MLX4_PMD) += lib/librte_ether
42 DEPDIRS-$(CONFIG_RTE_LIBRTE_MLX4_PMD) += lib/librte_mbuf
43 DEPDIRS-$(CONFIG_RTE_LIBRTE_MLX4_PMD) += lib/librte_eal
44 DEPDIRS-$(CONFIG_RTE_LIBRTE_MLX4_PMD) += lib/librte_mempool
45
46 # Basic CFLAGS.
47 CFLAGS += -O3
48 CFLAGS += -std=gnu99 -Wall -Wextra
49 CFLAGS += -g
50 CFLAGS += -I.
51 CFLAGS += -D_XOPEN_SOURCE=600
52 CFLAGS += $(WERROR_FLAGS)
53
54 # A few warnings cannot be avoided in external headers.
55 CFLAGS += -Wno-error=cast-qual
56
57 EXPORT_MAP := rte_pmd_mlx4_version.map
58 LIBABIVER := 1
59
60 # DEBUG which is usually provided on the command-line may enable
61 # CONFIG_RTE_LIBRTE_MLX4_DEBUG.
62 ifeq ($(DEBUG),1)
63 CONFIG_RTE_LIBRTE_MLX4_DEBUG := y
64 endif
65
66 # User-defined CFLAGS.
67 ifeq ($(CONFIG_RTE_LIBRTE_MLX4_DEBUG),y)
68 CFLAGS += -pedantic -UNDEBUG -DPEDANTIC
69 else
70 CFLAGS += -DNDEBUG -UPEDANTIC
71 endif
72
73 ifdef CONFIG_RTE_LIBRTE_MLX4_SGE_WR_N
74 CFLAGS += -DMLX4_PMD_SGE_WR_N=$(CONFIG_RTE_LIBRTE_MLX4_SGE_WR_N)
75 endif
76
77 ifdef CONFIG_RTE_LIBRTE_MLX4_MAX_INLINE
78 CFLAGS += -DMLX4_PMD_MAX_INLINE=$(CONFIG_RTE_LIBRTE_MLX4_MAX_INLINE)
79 endif
80
81 ifdef CONFIG_RTE_LIBRTE_MLX4_TX_MP_CACHE
82 CFLAGS += -DMLX4_PMD_TX_MP_CACHE=$(CONFIG_RTE_LIBRTE_MLX4_TX_MP_CACHE)
83 endif
84
85 ifdef CONFIG_RTE_LIBRTE_MLX4_SOFT_COUNTERS
86 CFLAGS += -DMLX4_PMD_SOFT_COUNTERS=$(CONFIG_RTE_LIBRTE_MLX4_SOFT_COUNTERS)
87 endif
88
89 include $(RTE_SDK)/mk/rte.lib.mk
90
91 # Generate and clean-up mlx4_autoconf.h.
92
93 export CC CFLAGS CPPFLAGS EXTRA_CFLAGS EXTRA_CPPFLAGS
94 export AUTO_CONFIG_CFLAGS = -Wno-error
95
96 ifndef V
97 AUTOCONF_OUTPUT := >/dev/null
98 endif
99
100 mlx4_autoconf.h: $(RTE_SDK)/scripts/auto-config-h.sh
101         $Q $(RM) -f -- '$@'
102         $Q sh -- '$<' '$@' \
103                 RSS_SUPPORT \
104                 infiniband/verbs.h \
105                 enum IBV_EXP_DEVICE_UD_RSS $(AUTOCONF_OUTPUT)
106         $Q sh -- '$<' '$@' \
107                 INLINE_RECV \
108                 infiniband/verbs.h \
109                 enum IBV_EXP_DEVICE_ATTR_INLINE_RECV_SZ $(AUTOCONF_OUTPUT)
110         $Q sh -- '$<' '$@' \
111                 HAVE_EXP_QUERY_DEVICE \
112                 infiniband/verbs.h \
113                 type 'struct ibv_exp_device_attr' $(AUTOCONF_OUTPUT)
114         $Q sh -- '$<' '$@' \
115                 HAVE_EXP_QP_BURST_CREATE_DISABLE_ETH_LOOPBACK \
116                 infiniband/verbs.h \
117                 enum IBV_EXP_QP_BURST_CREATE_DISABLE_ETH_LOOPBACK \
118                 $(AUTOCONF_OUTPUT)
119
120 mlx4.o: mlx4_autoconf.h
121
122 clean_mlx4: FORCE
123         $Q rm -f -- mlx4_autoconf.h
124
125 clean: clean_mlx4