New upstream version 18.02
[deb_dpdk.git] / lib / librte_kni / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2010-2014 Intel Corporation
3
4 include $(RTE_SDK)/mk/rte.vars.mk
5
6 # library name
7 LIB = librte_kni.a
8
9 CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR) -O3 -fno-strict-aliasing
10 LDLIBS += -lrte_eal -lrte_mempool -lrte_mbuf -lrte_ethdev
11
12 EXPORT_MAP := rte_kni_version.map
13
14 LIBABIVER := 2
15
16 # all source are stored in SRCS-y
17 SRCS-$(CONFIG_RTE_LIBRTE_KNI) := rte_kni.c
18
19 # install includes
20 SYMLINK-$(CONFIG_RTE_LIBRTE_KNI)-include := rte_kni.h
21
22 include $(RTE_SDK)/mk/rte.lib.mk