2017-12-19 15:49:03 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2010-2014 Intel Corporation
|
2012-12-19 23:00:00 +00:00
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
|
|
|
|
# library name
|
|
|
|
LIB = librte_kni.a
|
|
|
|
|
|
|
|
CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR) -O3 -fno-strict-aliasing
|
2017-10-12 16:04:21 +00:00
|
|
|
LDLIBS += -lrte_eal -lrte_mempool -lrte_mbuf -lrte_ethdev
|
2012-12-19 23:00:00 +00:00
|
|
|
|
2015-02-02 17:40:20 +00:00
|
|
|
EXPORT_MAP := rte_kni_version.map
|
|
|
|
|
2015-06-15 16:51:12 +00:00
|
|
|
LIBABIVER := 2
|
2015-02-02 17:40:21 +00:00
|
|
|
|
2012-12-19 23:00:00 +00:00
|
|
|
# all source are stored in SRCS-y
|
|
|
|
SRCS-$(CONFIG_RTE_LIBRTE_KNI) := rte_kni.c
|
|
|
|
|
|
|
|
# install includes
|
|
|
|
SYMLINK-$(CONFIG_RTE_LIBRTE_KNI)-include := rte_kni.h
|
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|