aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/Makefile
diff options
context:
space:
mode:
authorkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>2004-06-09 12:41:57 +0000
committerkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>2004-06-09 12:41:57 +0000
commit6529e122e41c02c4661272851e5ca790d0c8d968 (patch)
treed885963cbad049718f9d7934d73d7acf98046359 /xen/common/Makefile
parent4f906d0ac4cfa6ba4fd4e93ff3cdd7bb359778cd (diff)
downloadxen-6529e122e41c02c4661272851e5ca790d0c8d968.tar.gz
xen-6529e122e41c02c4661272851e5ca790d0c8d968.tar.bz2
xen-6529e122e41c02c4661272851e5ca790d0c8d968.zip
bitkeeper revision 1.944 (40c70595GOCGjmHQFvphhaOjXAmbvw)
Xen build-configuration cleanups.
Diffstat (limited to 'xen/common/Makefile')
-rw-r--r--xen/common/Makefile15
1 files changed, 12 insertions, 3 deletions
diff --git a/xen/common/Makefile b/xen/common/Makefile
index 5edce92487..12454c9aed 100644
--- a/xen/common/Makefile
+++ b/xen/common/Makefile
@@ -1,14 +1,23 @@
include $(BASEDIR)/Rules.mk
-ifeq ($(nperfc),y)
-OBJS := $(subst perfc.o,,$(OBJS))
+ifneq ($(debugger),y)
+OBJS := $(subst debug.o,,$(OBJS))
+OBJS := $(subst debug-linux.o,,$(OBJS))
endif
-ifeq ($(nodev),y)
+ifneq ($(old_drivers),y)
OBJS := $(subst network.o,,$(OBJS))
endif
+ifneq ($(perfc),y)
+OBJS := $(subst perfc.o,,$(OBJS))
+endif
+
+ifneq ($(trace),y)
+OBJS := $(subst trace.o,,$(OBJS))
+endif
+
default: $(OBJS)
$(LD) $(LDARCHFLAGS) -r -o common.o $(OBJS)