]> git.proxmox.com Git - ceph.git/blob - ceph/src/spdk/dpdk/lib/librte_cfgfile/Makefile
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / spdk / dpdk / lib / librte_cfgfile / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2010-2014 Intel Corporation
3
4 include $(RTE_SDK)/mk/rte.vars.mk
5
6 #
7 # library name
8 #
9 LIB = librte_cfgfile.a
10
11 CFLAGS += -O3
12 CFLAGS += $(WERROR_FLAGS)
13 CFLAGS += -I$(SRCDIR)/../librte_eal/include
14 LDLIBS += -lrte_eal
15
16 EXPORT_MAP := rte_cfgfile_version.map
17
18 #
19 # all source are stored in SRCS-y
20 #
21 SRCS-$(CONFIG_RTE_LIBRTE_CFGFILE) += rte_cfgfile.c
22
23 # install includes
24 SYMLINK-$(CONFIG_RTE_LIBRTE_CFGFILE)-include += rte_cfgfile.h
25
26 include $(RTE_SDK)/mk/rte.lib.mk