X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=linux_module%2FMakefile;h=2236f81044be41bf7533f8d2632ac6aba3d44264;hb=ddf193dd22f7445eab67730ad36cdca706e952a1;hp=d028d2e5dd721855af851a9f16c2a51d138da185;hpb=2ee5d1ec27731b41027c42003608ad9c06d748e8;p=palacios.releases.git diff --git a/linux_module/Makefile b/linux_module/Makefile index d028d2e..2236f81 100644 --- a/linux_module/Makefile +++ b/linux_module/Makefile @@ -6,6 +6,10 @@ ifdef V3_CONFIG_SYMMOD LDFLAGS += --script=$(PWD)/ld.symmod.cmd endif +ifdef V3_CONFIG_CHECKPOINT +LDFLAGS += --script=$(PWD)/ld.chkpt.cmd +endif + EXTRA_CFLAGS += -I$(PWD)/../palacios/include/ -include autoconf.h -DMODULE=1 -D__KERNEL__=1 @@ -33,6 +37,13 @@ v3vee-$(V3_CONFIG_VNET) += palacios-vnet.o \ palacios-vnet-ctrl.o \ palacios-vnet-brg.o +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_HOST_PCI) += iface-host-pci.o v3vee-objs := $(v3vee-y) ../libv3vee.a obj-m := v3vee.o