]> git.droids-corp.org - dpdk.git/blobdiff - examples/vm_power_manager/Makefile
examples/vm_power: add oob monitoring functions
[dpdk.git] / examples / vm_power_manager / Makefile
index 0c925967cf9cd23ec0abd683171af466f87b6f96..13a5205ba46f012222ffc0bb916d0775e518c5c0 100644 (file)
@@ -20,6 +20,11 @@ APP = vm_power_mgr
 # all source are stored in SRCS-y
 SRCS-y := main.c vm_power_cli.c power_manager.c channel_manager.c
 SRCS-y += channel_monitor.c parse.c
+ifeq ($(CONFIG_RTE_ARCH_X86_64),y)
+SRCS-y += oob_monitor_x86.c
+else
+SRCS-y += oob_monitor_nop.c
+endif
 
 CFLAGS += -O3 -I$(RTE_SDK)/lib/librte_power/
 CFLAGS += $(WERROR_FLAGS)