2018-12-06 14:17:51 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2016 Neil Horman <nhorman@tuxdriver.com>
|
|
|
|
# All rights reserved.
|
2017-04-21 10:43:26 +00:00
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
|
|
|
|
#
|
|
|
|
# library name
|
|
|
|
#
|
|
|
|
HOSTAPP = dpdk-pmdinfogen
|
|
|
|
|
|
|
|
#
|
|
|
|
# all sources are stored in SRCS-y
|
|
|
|
#
|
|
|
|
SRCS-y += pmdinfogen.c
|
|
|
|
|
2018-11-21 08:34:11 +00:00
|
|
|
HOST_CFLAGS += $(HOST_WERROR_FLAGS) -g
|
2017-04-21 10:43:26 +00:00
|
|
|
HOST_CFLAGS += -I$(RTE_OUTPUT)/include
|
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.hostapp.mk
|