common/octeontx2: add build infrastructure and HW 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
15 ifneq ($(CONFIG_RTE_ARCH_64),y)
16 CFLAGS += -Wno-int-to-pointer-cast
17 CFLAGS += -Wno-pointer-to-int-cast
18 endif
19
20 EXPORT_MAP := rte_common_octeontx2_version.map
21
22 LIBABIVER := 1
23
24 #
25 # all source are stored in SRCS-y
26 #
27 SRCS-y += otx2_mbox.c
28
29 LDLIBS += -lrte_eal
30 LDLIBS += -lrte_ethdev
31
32 include $(RTE_SDK)/mk/rte.lib.mk