aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/x86/Makefile
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-03-20 18:36:35 +0100
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-03-20 18:36:35 +0100
commit2a2926808c0db2dbecb12c8fe533bcbe79e5710b (patch)
tree8f5fdc18593ffde12d30d9c442a560ff39279eb6 /xen/arch/x86/Makefile
parentdb3a615c3149f260749e7f711604feefcbbf08c8 (diff)
downloadxen-2a2926808c0db2dbecb12c8fe533bcbe79e5710b.tar.gz
xen-2a2926808c0db2dbecb12c8fe533bcbe79e5710b.tar.bz2
xen-2a2926808c0db2dbecb12c8fe533bcbe79e5710b.zip
Some more build-system finessing:
1. subdirs-y -> subdir-y (match Linux name, and also obj-y is singular so this makes sense). 2. subdirs can be declared with or without trailing slash 3. As with Linux, subdirs can be declared in the obj-y list but they must be distinguished by a trailing slash Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'xen/arch/x86/Makefile')
-rw-r--r--xen/arch/x86/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/xen/arch/x86/Makefile b/xen/arch/x86/Makefile
index 014e5f31d8..3fa20dd7d0 100644
--- a/xen/arch/x86/Makefile
+++ b/xen/arch/x86/Makefile
@@ -1,12 +1,12 @@
include $(BASEDIR)/Rules.mk
-subdirs-y += acpi
-subdirs-y += cpu
-subdirs-y += genapic
-subdirs-y += hvm
+subdir-y += acpi
+subdir-y += cpu
+subdir-y += genapic
+subdir-y += hvm
-subdirs-$(x86_32) += x86_32
-subdirs-$(x86_64) += x86_64
+subdir-$(x86_32) += x86_32
+subdir-$(x86_64) += x86_64
obj-y += apic.o
obj-y += audit.o