2017-12-19 15:49:03 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2010-2014 Intel Corporation
|
2014-06-04 19:08:36 +01:00
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
|
|
|
|
#
|
|
|
|
# library name
|
|
|
|
#
|
|
|
|
LIB = librte_cfgfile.a
|
|
|
|
|
|
|
|
CFLAGS += -O3
|
|
|
|
CFLAGS += $(WERROR_FLAGS)
|
2017-09-22 11:44:46 +02:00
|
|
|
CFLAGS += -I$(SRCDIR)/../librte_eal/common/include
|
2019-07-18 10:18:11 -07:00
|
|
|
LDLIBS += -lrte_eal
|
2014-06-04 19:08:36 +01:00
|
|
|
|
2015-02-02 12:40:20 -05:00
|
|
|
EXPORT_MAP := rte_cfgfile_version.map
|
|
|
|
|
2015-10-22 15:03:03 +01:00
|
|
|
LIBABIVER := 2
|
2015-02-02 12:40:21 -05:00
|
|
|
|
2014-06-04 19:08:36 +01:00
|
|
|
#
|
|
|
|
# all source are stored in SRCS-y
|
|
|
|
#
|
|
|
|
SRCS-$(CONFIG_RTE_LIBRTE_CFGFILE) += rte_cfgfile.c
|
|
|
|
|
|
|
|
# install includes
|
|
|
|
SYMLINK-$(CONFIG_RTE_LIBRTE_CFGFILE)-include += rte_cfgfile.h
|
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|