2017-12-19 15:49:03 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2017 Intel Corporation
|
2017-10-04 03:12:19 +00:00
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
|
|
|
|
# library name
|
|
|
|
LIB = librte_member.a
|
|
|
|
|
|
|
|
CFLAGS := -I$(SRCDIR) $(CFLAGS)
|
|
|
|
CFLAGS += $(WERROR_FLAGS) -O3
|
|
|
|
|
|
|
|
LDLIBS += -lm
|
2017-10-12 16:04:21 +00:00
|
|
|
LDLIBS += -lrte_eal -lrte_hash
|
2017-10-04 03:12:19 +00:00
|
|
|
|
|
|
|
EXPORT_MAP := rte_member_version.map
|
|
|
|
|
|
|
|
# all source are stored in SRCS-y
|
2017-10-04 03:12:21 +00:00
|
|
|
SRCS-$(CONFIG_RTE_LIBRTE_MEMBER) += rte_member.c rte_member_ht.c rte_member_vbf.c
|
2017-10-04 03:12:19 +00:00
|
|
|
# install includes
|
|
|
|
SYMLINK-$(CONFIG_RTE_LIBRTE_MEMBER)-include := rte_member.h
|
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|