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.


updated module cleanup and added user space tools
[palacios.git] / linux_usr / Makefile
1 all: v3_ctrl v3_stop v3_cons v3_mem v3_monitor v3_serial v3_net
2
3
4 v3_ctrl : v3_ctrl.c v3_ctrl.h
5         gcc -static v3_ctrl.c -o v3_ctrl 
6
7 v3_stop : v3_stop.c v3_ctrl.h
8         gcc -static v3_stop.c -o v3_stop 
9
10 v3_mem : v3_mem.c v3_ctrl.h
11         gcc -static v3_mem.c -o v3_mem 
12
13
14 v3_cons : v3_cons.c v3_ctrl.h
15         gcc -static v3_cons.c -o v3_cons -lcurses
16
17 v3_serial : v3_serial.c v3_ctrl.h
18         gcc -static v3_serial.c -pthread -o v3_serial 
19
20 v3_monitor : v3_cons.c v3_ctrl.h
21         gcc -static v3_monitor.c -o v3_monitor
22
23 v3_net : v3_net.c v3_ctrl.h
24         gcc -static v3_net.c -o v3_net
25
26 clean:
27         rm -f v3_ctrl v3_cons v3_mem v3_monitor v3_serial v3_net