aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/common/dpaax/Makefile
blob: 94d2cf0ce7ee6af4673a90a1f67f3125827d2252 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2018 NXP
#

include $(RTE_SDK)/mk/rte.vars.mk

#
# library name
#
LIB = librte_common_dpaax.a

CFLAGS += -DALLOW_EXPERIMENTAL_API
CFLAGS += -O3
CFLAGS += $(WERROR_FLAGS)

# versioning export map
EXPORT_MAP := rte_common_dpaax_version.map

# library version
LIBABIVER := 1

#
# all source are stored in SRCS-y
#
SRCS-y += dpaax_iova_table.c

LDLIBS += -lrte_eal

SYMLINK-y-include += dpaax_iova_table.h

include $(RTE_SDK)/mk/rte.lib.mk