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.


3aa822c294aed576cff906d2ffd7bba7390f53de
[palacios.git] / linux_usr / Makefile
1 all: v3_ctrl v3_stop v3_cons v3_mem v3_monitor v3_stream v3_user_host_dev_example v3_os_debug v3_user_keyed_stream_example v3_user_keyed_stream_file v3_core_move
2
3
4
5 v3_ctrl : v3_ctrl.c v3_ctrl.h
6         gcc -static v3_ctrl.c -o v3_ctrl 
7
8 v3_stop : v3_stop.c v3_ctrl.h
9         gcc -static v3_stop.c -o v3_stop 
10
11 v3_mem : v3_mem.c v3_ctrl.h
12         gcc -static v3_mem.c -o v3_mem 
13
14
15 v3_cons : v3_cons.c v3_cons_sc.c v3_ctrl.h
16         gcc  v3_cons.c -o v3_cons -lcurses
17         gcc  v3_cons_sc.c -o v3_cons_sc -lcurses
18
19 v3_stream : v3_stream.c v3_ctrl.h
20         gcc -static v3_stream.c -o v3_stream 
21
22 v3_monitor : v3_cons.c v3_ctrl.h
23         gcc -static v3_monitor.c -o v3_monitor
24
25 v3_user_host_dev_example: v3_user_host_dev_example.c v3_user_host_dev.h v3_user_host_dev.c
26         gcc -static -I../linux_module v3_user_host_dev_example.c v3_user_host_dev.c -o v3_user_host_dev_example
27
28 v3_os_debug: v3_os_debug.c v3_user_host_dev.h v3_user_host_dev.c
29         gcc -static -I../linux_module v3_os_debug.c v3_user_host_dev.c -o v3_os_debug
30
31 v3_user_keyed_stream_example: v3_user_keyed_stream_example.c v3_user_keyed_stream.h v3_user_keyed_stream.c
32         gcc -static -I../linux_module v3_user_keyed_stream_example.c v3_user_keyed_stream.c -o v3_user_keyed_stream_example
33
34
35 v3_user_keyed_stream_file: v3_user_keyed_stream_file.c v3_user_keyed_stream.h v3_user_keyed_stream.c
36         gcc -static -I../linux_module v3_user_keyed_stream_file.c v3_user_keyed_stream.c -o v3_user_keyed_stream_file
37
38 v3_core_move : v3_core_move.c v3_ctrl.h
39         gcc -static v3_core_move.c -o v3_core_move
40
41 v3_inject_ecc_scrubber_mce: v3_inject_ecc_scrubber_mce.c
42         gcc -static -I../linux_module v3_inject_ecc_scrubber_mce.c -o v3_inject_ecc_scrubber_mce
43
44 clean:
45         rm -f v3_ctrl v3_cons v3_mem v3_monitor v3_stream v3_user_host_dev_example v3_os_debug v3_user_keyed_stream_example v3_user_keyed_stream_file v3_core_migrate