mk: optimize directory dependencies
[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 # Basic CFLAGS.
41 CFLAGS += -O3
42 CFLAGS += -std=gnu99 -Wall -Wextra
43 CFLAGS += -g
44 CFLAGS += -I.
45 CFLAGS += -D_BSD_SOURCE
46 CFLAGS += -D_DEFAULT_SOURCE
47 CFLAGS += -D_XOPEN_SOURCE=600
48 CFLAGS += $(WERROR_FLAGS)
49 LDLIBS += -libverbs
50
51 # A few warnings cannot be avoided in external headers.
52 CFLAGS += -Wno-error=cast-qual
53
54 EXPORT_MAP := rte_pmd_mlx4_version.map
55 LIBABIVER := 1
56
57 # DEBUG which is usually provided on the command-line may enable
58 # CONFIG_RTE_LIBRTE_MLX4_DEBUG.
59 ifeq ($(DEBUG),1)
60 CONFIG_RTE_LIBRTE_MLX4_DEBUG := y
61 endif
62
63 # User-defined CFLAGS.
64 ifeq ($(CONFIG_RTE_LIBRTE_MLX4_DEBUG),y)
65 CFLAGS += -pedantic -UNDEBUG -DPEDANTIC
66 else
67 CFLAGS += -DNDEBUG -UPEDANTIC
68 endif
69
70 ifdef CONFIG_RTE_LIBRTE_MLX4_SGE_WR_N
71 CFLAGS += -DMLX4_PMD_SGE_WR_N=$(CONFIG_RTE_LIBRTE_MLX4_SGE_WR_N)
72 endif
73
74 ifdef CONFIG_RTE_LIBRTE_MLX4_MAX_INLINE
75 CFLAGS += -DMLX4_PMD_MAX_INLINE=$(CONFIG_RTE_LIBRTE_MLX4_MAX_INLINE)
76 endif
77
78 ifdef CONFIG_RTE_LIBRTE_MLX4_TX_MP_CACHE
79 CFLAGS += -DMLX4_PMD_TX_MP_CACHE=$(CONFIG_RTE_LIBRTE_MLX4_TX_MP_CACHE)
80 endif
81
82 ifdef CONFIG_RTE_LIBRTE_MLX4_SOFT_COUNTERS
83 CFLAGS += -DMLX4_PMD_SOFT_COUNTERS=$(CONFIG_RTE_LIBRTE_MLX4_SOFT_COUNTERS)
84 endif
85
86 include $(RTE_SDK)/mk/rte.lib.mk
87
88 # Generate and clean-up mlx4_autoconf.h.
89
90 export CC CFLAGS CPPFLAGS EXTRA_CFLAGS EXTRA_CPPFLAGS
91 export AUTO_CONFIG_CFLAGS = -Wno-error
92
93 ifndef V
94 AUTOCONF_OUTPUT := >/dev/null
95 endif
96
97 mlx4_autoconf.h.new: FORCE
98
99 mlx4_autoconf.h.new: $(RTE_SDK)/buildtools/auto-config-h.sh
100         $Q $(RM) -f -- '$@'
101         $Q sh -- '$<' '$@' \
102                 RSS_SUPPORT \
103                 infiniband/verbs.h \
104                 enum IBV_EXP_DEVICE_UD_RSS $(AUTOCONF_OUTPUT)
105         $Q sh -- '$<' '$@' \
106                 INLINE_RECV \
107                 infiniband/verbs.h \
108                 enum IBV_EXP_DEVICE_ATTR_INLINE_RECV_SZ $(AUTOCONF_OUTPUT)
109         $Q sh -- '$<' '$@' \
110                 HAVE_EXP_QUERY_DEVICE \
111                 infiniband/verbs.h \
112                 type 'struct ibv_exp_device_attr' $(AUTOCONF_OUTPUT)
113         $Q sh -- '$<' '$@' \
114                 HAVE_EXP_QP_BURST_CREATE_DISABLE_ETH_LOOPBACK \
115                 infiniband/verbs.h \
116                 enum IBV_EXP_QP_BURST_CREATE_DISABLE_ETH_LOOPBACK \
117                 $(AUTOCONF_OUTPUT)
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 mlx4.o: mlx4_autoconf.h
127
128 clean_mlx4: FORCE
129         $Q rm -f -- mlx4_autoconf.h mlx4_autoconf.h.new
130
131 clean: clean_mlx4