cfgfile: use log for error messages
[dpdk.git] / 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/common/include
14 LDLIBS += -lrte_eal
15
16 EXPORT_MAP := rte_cfgfile_version.map
17
18 LIBABIVER := 2
19
20 #
21 # all source are stored in SRCS-y
22 #
23 SRCS-$(CONFIG_RTE_LIBRTE_CFGFILE) += rte_cfgfile.c
24
25 # install includes
26 SYMLINK-$(CONFIG_RTE_LIBRTE_CFGFILE)-include += rte_cfgfile.h
27
28 include $(RTE_SDK)/mk/rte.lib.mk