build: disable experimental API check internally
[dpdk.git] / lib / librte_stack / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2019 Intel Corporation
3
4 include $(RTE_SDK)/mk/rte.vars.mk
5
6 # library name
7 LIB = librte_stack.a
8
9 CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR) -O3
10 LDLIBS += -lrte_eal
11
12 EXPORT_MAP := rte_stack_version.map
13
14 # all source are stored in SRCS-y
15 SRCS-$(CONFIG_RTE_LIBRTE_STACK) := rte_stack.c \
16                                    rte_stack_std.c \
17                                    rte_stack_lf.c
18
19 # install includes
20 SYMLINK-$(CONFIG_RTE_LIBRTE_STACK)-include := rte_stack.h \
21                                               rte_stack_std.h \
22                                               rte_stack_lf.h \
23                                               rte_stack_lf_generic.h \
24                                               rte_stack_lf_c11.h \
25                                               rte_stack_lf_stubs.h
26
27 include $(RTE_SDK)/mk/rte.lib.mk