2018-01-08 05:25:17 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2017 Cavium, Inc
|
2017-07-04 04:52:56 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
|
|
|
|
APP = dpdk-test-eventdev
|
|
|
|
|
|
|
|
CFLAGS += -O3
|
|
|
|
CFLAGS += $(WERROR_FLAGS)
|
|
|
|
|
|
|
|
#
|
|
|
|
# all source are stored in SRCS-y
|
|
|
|
#
|
|
|
|
SRCS-y := evt_main.c
|
2017-07-04 04:53:01 +00:00
|
|
|
SRCS-y += evt_options.c
|
2017-07-04 04:52:58 +00:00
|
|
|
SRCS-y += evt_test.c
|
2017-07-04 04:52:59 +00:00
|
|
|
SRCS-y += parser.c
|
2017-07-04 04:52:56 +00:00
|
|
|
|
2017-07-04 04:53:07 +00:00
|
|
|
SRCS-y += test_order_common.c
|
2017-07-04 04:53:11 +00:00
|
|
|
SRCS-y += test_order_queue.c
|
2017-07-04 04:53:13 +00:00
|
|
|
SRCS-y += test_order_atq.c
|
2017-07-04 04:53:07 +00:00
|
|
|
|
2017-07-04 04:53:14 +00:00
|
|
|
SRCS-y += test_perf_common.c
|
2017-07-04 04:53:19 +00:00
|
|
|
SRCS-y += test_perf_queue.c
|
2017-07-04 04:53:21 +00:00
|
|
|
SRCS-y += test_perf_atq.c
|
2017-07-04 04:53:14 +00:00
|
|
|
|
2018-01-16 17:45:54 +00:00
|
|
|
SRCS-y += test_pipeline_common.c
|
2018-01-16 17:46:01 +00:00
|
|
|
SRCS-y += test_pipeline_queue.c
|
2018-01-16 17:46:03 +00:00
|
|
|
SRCS-y += test_pipeline_atq.c
|
2018-01-16 17:45:54 +00:00
|
|
|
|
2017-07-04 04:52:56 +00:00
|
|
|
include $(RTE_SDK)/mk/rte.app.mk
|