raw/ifpga/base: fix bit fields definition
[dpdk.git] / drivers / common / octeontx2 / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(C) 2019 Marvell International Ltd.
3 #
4
5 include $(RTE_SDK)/mk/rte.vars.mk
6
7 #
8 # library name
9 #
10 LIB = librte_common_octeontx2.a
11
12 CFLAGS += $(WERROR_FLAGS)
13 CFLAGS += -I$(RTE_SDK)/drivers/common/octeontx2
14 CFLAGS += -I$(RTE_SDK)/drivers/mempool/octeontx2
15 CFLAGS += -I$(RTE_SDK)/drivers/bus/pci
16
17 ifneq ($(CONFIG_RTE_ARCH_64),y)
18 CFLAGS += -Wno-int-to-pointer-cast
19 CFLAGS += -Wno-pointer-to-int-cast
20 endif
21
22 EXPORT_MAP := rte_common_octeontx2_version.map
23
24 LIBABIVER := 1
25
26 #
27 # all source are stored in SRCS-y
28 #
29 SRCS-y += otx2_dev.c
30 SRCS-y += otx2_irq.c
31 SRCS-y += otx2_mbox.c
32 SRCS-y += otx2_common.c
33
34 LDLIBS += -lrte_eal
35 LDLIBS += -lrte_ethdev
36
37 include $(RTE_SDK)/mk/rte.lib.mk