ee14dba7af4a8555893532625f120dfb0b6ef8db
[dpdk.git] / lib / librte_pdump / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2016-2018 Intel Corporation
3
4 include $(RTE_SDK)/mk/rte.vars.mk
5
6 # library name
7 LIB = librte_pdump.a
8
9 CFLAGS += -DALLOW_EXPERIMENTAL_API
10 CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR) -O3
11 CFLAGS += -D_GNU_SOURCE
12 LDLIBS += -lrte_eal -lrte_mempool -lrte_mbuf -lrte_ethdev
13
14 EXPORT_MAP := rte_pdump_version.map
15
16 LIBABIVER := 2
17
18 # all source are stored in SRCS-y
19 SRCS-$(CONFIG_RTE_LIBRTE_PDUMP) := rte_pdump.c
20
21 # install this header file
22 SYMLINK-$(CONFIG_RTE_LIBRTE_PDUMP)-include := rte_pdump.h
23
24 include $(RTE_SDK)/mk/rte.lib.mk