X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=linux_module%2FMakefile;h=99823e1a6a8cff86ddede7db6161ce9556b32615;hb=13230ccb05189ab1a615d28d78f1a8b19858e422;hp=3b8f6993f24065d6c0e4d8d9c496654aab170999;hpb=17556749e79560e7254e5f40155926ce5cce5cab;p=palacios.releases.git diff --git a/linux_module/Makefile b/linux_module/Makefile index 3b8f699..99823e1 100644 --- a/linux_module/Makefile +++ b/linux_module/Makefile @@ -17,9 +17,10 @@ v3vee-y := palacios-stubs.o \ main.o \ vm.o \ mm.o \ + allow_devmem.o \ util-queue.o \ util-hashtable.o \ - linux-exts.o + linux-exts.o v3vee-$(V3_CONFIG_CONSOLE) += iface-console.o v3vee-$(V3_CONFIG_FILE) += iface-file.o @@ -43,10 +44,15 @@ v3vee-$(V3_CONFIG_HOST_HYPERCALL) += iface-host-hypercall.o v3vee-$(V3_CONFIG_EXT_CODE_INJECT) += iface-code-inject.o v3vee-$(V3_CONFIG_EXT_ENV_INJECT) += iface-env-inject.o v3vee-$(V3_CONFIG_EXT_SELECTIVE_SYSCALL_EXIT) += iface-syscall.o +v3vee-$(V3_CONFIG_EXT_GUARD_MODULES) += iface-guard-mods.o v3vee-$(V3_CONFIG_HOST_PCI) += iface-host-pci.o +v3vee-$(V3_CONFIG_DEBUG_LOCKS) += lockcheck.o +v3vee-$(V3_CONFIG_DEBUG_MEM_ALLOC) += memcheck.o + + v3vee-objs := $(v3vee-y) ../libv3vee.a obj-m := v3vee.o