ia64/xen-unstable
changeset 16421:5b1120109823
Header dependency fix.
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Jan Beulich <jbeulich@novell.com>
author | Keir Fraser <keir.fraser@citrix.com> |
---|---|
date | Thu Nov 22 14:04:44 2007 +0000 (2007-11-22) |
parents | 980b8d1a5541 |
children | db98e4676d3f |
files | xen/arch/powerpc/Rules.mk xen/arch/x86/Rules.mk |
line diff
1.1 --- a/xen/arch/powerpc/Rules.mk Thu Nov 22 10:44:54 2007 +0000 1.2 +++ b/xen/arch/powerpc/Rules.mk Thu Nov 22 14:04:44 2007 +0000 1.3 @@ -12,7 +12,6 @@ C_WARNINGS += -Wpacked 1.4 CFLAGS += -m64 -ffreestanding -fno-builtin -fno-common 1.5 CFLAGS += -iwithprefix include -Werror -pipe 1.6 CFLAGS += -I$(BASEDIR)/include 1.7 -CFLAGS += -I$(BASEDIR)/include/asm-powerpc/mach-generic 1.8 CFLAGS += -I$(BASEDIR)/include/asm-powerpc/mach-default 1.9 CFLAGS += $(C_WARNINGS) 1.10 CFLAGS += -msoft-float -O2 1.11 @@ -33,6 +32,8 @@ LDFLAGS += -m elf64ppc 1.12 --redefine-sym _binary_$*_bin_size=$*_size \ 1.13 $< $@ 1.14 1.15 +HDRS += $(wildcard $(BASEDIR)/include/asm-powerpc/mach-*/*.h) 1.16 + 1.17 # Test for at least GCC v3.2.x. 1.18 gcc-ver = $(shell $(CC) -dumpversion | sed -e 's/^\(.\)\.\(.\)\.\(.\)/\$(1)/') 1.19 ifeq ($(call gcc-ver,1),1)
2.1 --- a/xen/arch/x86/Rules.mk Thu Nov 22 10:44:54 2007 +0000 2.2 +++ b/xen/arch/x86/Rules.mk Thu Nov 22 14:04:44 2007 +0000 2.3 @@ -57,6 +57,7 @@ endif 2.4 HDRS += $(wildcard $(BASEDIR)/include/asm-x86/hvm/*.h) 2.5 HDRS += $(wildcard $(BASEDIR)/include/asm-x86/hvm/svm/*.h) 2.6 HDRS += $(wildcard $(BASEDIR)/include/asm-x86/hvm/vmx/*.h) 2.7 +HDRS += $(wildcard $(BASEDIR)/include/asm-x86/mach-*/*.h) 2.8 2.9 # Require GCC v3.4+ (to avoid issues with alignment constraints in Xen headers) 2.10 $(call cc-ver-check,CC,0x030400,"Xen requires at least gcc-3.4")