aboutsummaryrefslogtreecommitdiffstats
path: root/xen/drivers/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/drivers/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/drivers/Makefile')
-rw-r--r--xen/drivers/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/xen/drivers/Makefile b/xen/drivers/Makefile
index e118e2115a..b24da03f5e 100644
--- a/xen/drivers/Makefile
+++ b/xen/drivers/Makefile
@@ -1,6 +1,6 @@
include $(BASEDIR)/Rules.mk
-subdirs-y := char/
-subdirs-$(HAS_ACPI) += acpi/
+subdir-y += char
+subdir-$(HAS_ACPI) += acpi
include $(BASEDIR)/Post.mk