X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=blobdiff_plain;f=palacios%2Fbuild%2FMakefile;h=41e56522f7730f27e52f4de2dbbb6d032b370e6f;hp=95b2af2964cea0dccf4df5a3def1950ec7d5802a;hb=df58bd3c484a52b1e166dc28e7b9b6fd94e5a023;hpb=570ad6257ed18fbbc840c17a600f12f2dc44b010 diff --git a/palacios/build/Makefile b/palacios/build/Makefile index 95b2af2..41e5652 100644 --- a/palacios/build/Makefile +++ b/palacios/build/Makefile @@ -1,6 +1,6 @@ # Makefile for GeekOS kernel, userspace, and tools # Copyright (c) 2004,2005 David H. Hovemeyer -# $Revision: 1.25 $ +# $Revision: 1.26 $ # This is free software. You are permitted to use, # redistribute, and modify it as specified in the file "COPYING". @@ -124,7 +124,7 @@ VMM_ASM_OBJS := $(VMM_ASM_SRCS:%.asm=palacios/%.o) VMM_C_SRCS := vm_guest.c \ svm.c svm_handler.c vmm.c vmm_util.c svm_ctrl_regs.c \ vmcb.c vmm_mem.c vmm_paging.c vmm_io.c vmm_debug.c svm_io.c \ - vmm_intr.c \ + vmm_intr.c vmm_irq.c\ vmm_shadow_paging.c vm_guest_mem.c \ vm_dev.c vmm_dev_mgr.c \ #\ @@ -134,7 +134,7 @@ VMM_C_OBJS := $(VMM_C_SRCS:%.c=palacios/%.o) VMM_OBJS := $(VMM_C_OBJS) $(VMM_ASM_OBJS) -DEVICE_C_SRCS := nvram.c +DEVICE_C_SRCS := nvram.c timer.c DEVICE_C_OBJS := $(DEVICE_C_SRCS:%.c=devices/%.o)