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.


Support for new Palacios image file format (Version 1)
[palacios.git] / utils / guest_creator / Makefile
index 0bc5172..ec26ac6 100644 (file)
@@ -1,16 +1,17 @@
 
 CC = gcc
-CFLAGS = -Wall -g 
+INC = -I../../linux_usr
+CFLAGS = -Wall -g  $(INC)
 LDFLAGS = 
 
 
-OBJS = main.c ezxml.c
+OBJS = main.c ezxml.c ../../linux_usr/libv3_ctrl.a
 
 all: builder
 
 
 builder: $(OBJS)
-       $(CC) $(CFLAGS) $(OBJS) -o build_vm
+       $(CC) $(CFLAGS) $(OBJS) -lv3_ctrl -L../../linux_usr -o build_vm
 
 clean:         
-       rm -f *.o build_vm
\ No newline at end of file
+       rm -f *.o build_vm