From ab2691de1625d6c174eed827fa68b5830b8c48b2 Mon Sep 17 00:00:00 2001 From: "Li, Fei1" Date: Thu, 22 Mar 2018 00:38:30 +0800 Subject: [PATCH] Don't build in debug directory for release Signed-off-by: Li, Fei1 --- hypervisor/Makefile | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/hypervisor/Makefile b/hypervisor/Makefile index d35f82f7b..0b4ab1030 100644 --- a/hypervisor/Makefile +++ b/hypervisor/Makefile @@ -76,16 +76,7 @@ AR = ar LD = gcc POSTLD = objcopy -D_SRCS += debug/dump.c -D_SRCS += debug/logmsg.c -D_SRCS += debug/shell_internal.c -D_SRCS += debug/shell_public.c -D_SRCS += debug/vuart.c -D_SRCS += debug/serial.c -D_SRCS += debug/uart16550.c -D_SRCS += debug/console.c -D_SRCS += debug/sbuf.c -D_SRCS += debug/printf.c +D_SRCS += $(wildcard debug/*.c) C_SRCS += boot/acpi.c C_SRCS += boot/dmar_parse.c C_SRCS += boot/multiboot.c