Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


fixed up include directories for new interfaces locations
[palacios.git] / linux_module / Makefile
1
2 LDFLAGS += --whole-archive  --script=$(PWD)/link.cmd
3
4 EXTRA_CFLAGS  += -I$(PWD)/../palacios/include/ -DMODULE=1 -D__KERNEL__=1
5
6
7 v3vee-objs:=    palacios.o \
8                 palacios-dev.o \
9                 palacios-vm.o \
10                 palacios-file.o \
11                 palacios-stream.o \
12                 palacios-console.o \
13                 palacios-mm.o \
14                 palacios-serial.o \
15                 palacios-queue.o \
16                 palacios-ringbuffer.o \
17                 palacios-debugfs.o
18
19 ifdef CONFIG_PALACIOS_VNET
20                 v3vee-objs += palacios-vnet.o           
21 endif
22 ifdef CONFIG_PALACIOS_PACKET
23                 v3vee-objs += palacios-packet.o
24 endif
25 ifdef CONFIG_PALACIOS_SOCKET
26                 v3vee-objs += palacios-socket.o
27 endif
28
29 v3vee-objs += ../libv3vee.a 
30
31
32
33 obj-m := v3vee.o
34
35
36
37 all:
38         $(MAKE) -C $(CONFIG_LINUX_KERN) M=$(PWD) modules
39
40
41
42 clean:
43         $(MAKE) -C $(CONFIG_LINUX_KERN) M=$(PWD) clean
44