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.


HVM capability enhancement: asynchronous upcalls to ROS userspace
[palacios.git] / utils / guest_creator / Makefile
1
2 CC = gcc
3 INC = -I../../linux_usr
4 CFLAGS = -Wall -g  $(INC)
5 LDFLAGS = 
6
7
8 OBJS = main.c ezxml.c ../../linux_usr/libv3_ctrl.a
9
10 all: builder
11
12
13 builder: $(OBJS)
14         $(CC) $(CFLAGS) $(OBJS) -lv3_ctrl -L../../linux_usr -o build_vm
15
16 clean:  
17         rm -f *.o build_vm