New upstream version 18.02
[deb_dpdk.git] / drivers / net / failsafe / Makefile
1 #   BSD LICENSE
2 #
3 #   Copyright 2017 6WIND S.A.
4 #   Copyright 2017 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_failsafe.a
36
37 EXPORT_MAP := rte_pmd_failsafe_version.map
38
39 LIBABIVER := 1
40
41 # Sources are stored in SRCS-y
42 SRCS-$(CONFIG_RTE_LIBRTE_PMD_FAILSAFE) += failsafe.c
43 SRCS-$(CONFIG_RTE_LIBRTE_PMD_FAILSAFE) += failsafe_args.c
44 SRCS-$(CONFIG_RTE_LIBRTE_PMD_FAILSAFE) += failsafe_eal.c
45 SRCS-$(CONFIG_RTE_LIBRTE_PMD_FAILSAFE) += failsafe_ops.c
46 SRCS-$(CONFIG_RTE_LIBRTE_PMD_FAILSAFE) += failsafe_rxtx.c
47 SRCS-$(CONFIG_RTE_LIBRTE_PMD_FAILSAFE) += failsafe_ether.c
48 SRCS-$(CONFIG_RTE_LIBRTE_PMD_FAILSAFE) += failsafe_flow.c
49 SRCS-$(CONFIG_RTE_LIBRTE_PMD_FAILSAFE) += failsafe_intr.c
50 ifeq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
51 CFLAGS += -DLINUX
52 else
53 CFLAGS += -DBSD
54 endif
55
56 # No exported include files
57
58 # Basic CFLAGS:
59 CFLAGS += -DALLOW_EXPERIMENTAL_API
60 CFLAGS += -std=gnu99 -Wextra
61 CFLAGS += -O3
62 CFLAGS += -I.
63 CFLAGS += -D_DEFAULT_SOURCE
64 CFLAGS += -D_XOPEN_SOURCE=700
65 CFLAGS += $(WERROR_FLAGS)
66 CFLAGS += -Wno-strict-prototypes
67 CFLAGS += -pedantic
68 LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
69 LDLIBS += -lrte_ethdev -lrte_net -lrte_kvargs
70 LDLIBS += -lrte_bus_vdev
71 LDLIBS += -lpthread
72
73 include $(RTE_SDK)/mk/rte.lib.mk