f-stack/dpdk/lib/librte_member/Makefile

25 lines
545 B
Makefile
Raw Normal View History

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