2018-12-06 14:17:51 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2010-2014 Intel Corporation
|
2017-04-21 10:43:26 +00:00
|
|
|
|
|
|
|
ifeq ($(RTE_SDK),)
|
|
|
|
$(error "Please define RTE_SDK environment variable")
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Default target, can be overridden by command line or environment
|
|
|
|
RTE_TARGET ?= x86_64-native-linuxapp-gcc
|
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
|
|
|
|
# binary name
|
|
|
|
APP = guest_vm_power_mgr
|
|
|
|
|
|
|
|
# all source are stored in SRCS-y
|
2018-12-06 14:17:51 +00:00
|
|
|
SRCS-y := main.c vm_power_cli_guest.c parse.c
|
2017-04-21 10:43:26 +00:00
|
|
|
|
|
|
|
CFLAGS += -O3 -I$(RTE_SDK)/lib/librte_power/
|
|
|
|
CFLAGS += $(WERROR_FLAGS)
|
|
|
|
|
|
|
|
# workaround for a gcc bug with noreturn attribute
|
|
|
|
# http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
|
|
|
|
ifeq ($(CONFIG_RTE_TOOLCHAIN_GCC),y)
|
|
|
|
CFLAGS_main.o += -Wno-return-type
|
|
|
|
endif
|
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.extapp.mk
|