From fd347f1b55d1a77969f2624f0063152568dabab0 Mon Sep 17 00:00:00 2001 From: "tlh20@elite.cl.cam.ac.uk" Date: Tue, 6 May 2003 09:36:15 +0000 Subject: bitkeeper revision 1.206 (3eb7820fjxOimwW6NMSeo6KyAdqZUQ) Many files: new file domctl, xi_ tools, updated domain builder, /proc/xeno/domains --- tools/internal/Makefile | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 tools/internal/Makefile (limited to 'tools/internal/Makefile') diff --git a/tools/internal/Makefile b/tools/internal/Makefile new file mode 100644 index 0000000000..d2e19221d1 --- /dev/null +++ b/tools/internal/Makefile @@ -0,0 +1,32 @@ +CC = gcc +XI_CREATE = xi_create +XI_START = xi_start +XI_STOP = xi_stop +XI_DESTROY = xi_destroy +XI_BUILD = xi_build + +all: $(XI_CREATE).o $(XI_START).o $(XI_STOP).o $(XI_DESTROY).o $(XI_BUILD).o + $(CC) -o $(XI_CREATE) $(XI_CREATE).o + $(CC) -o $(XI_BUILD) $(XI_BUILD).o + $(CC) -o $(XI_START) $(XI_START).o + $(CC) -o $(XI_STOP) $(XI_STOP).o + $(CC) -o $(XI_DESTROY) $(XI_DESTROY).o + +$(XI_CREATE).o: $(XI_CREATE).c dom0_defs.h dom0_ops.h hypervisor_defs.h mem_defs.h + $(CC) -c $(XI_CREATE).c + +internal_domain_build.o: internal_domain_build.c dom0_defs.h dom0_ops.h hypervisor_defs.h mem_defs.h + $(CC) -c internal_domain_build.c + +$(XI_START).o: $(XI_START).c dom0_defs.h dom0_ops.h hypervisor_defs.h mem_defs.h + $(CC) -c $(XI_START).c + +$(XI_STOP).o: $(XI_STOP).c dom0_defs.h dom0_ops.h hypervisor_defs.h mem_defs.h + $(CC) -c $(XI_STOP).c + +$(XI_DESTROY).o: $(XI_DESTROY).c dom0_ops.h dom0_defs.h + $(CC) -c $(XI_DESTROY).c + +clean: + $(RM) *.o $(XI_CREATE) $(XI_START) $(XI_STOP) $(XI_DESTROY) $(XI_BUILD) + -- cgit v1.2.3