X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=linux_usr%2FMakefile;h=c74b4cc214b5f906bd900add1072d54a3a30ad24;hb=793f9cd53a472668dbeb16341085e5512484485c;hp=439494c93eb7f2f541f7b2c86dbb2ece1593b4c3;hpb=4fdb3bc363a277d32fd95f58358470874b992c53;p=palacios.git diff --git a/linux_usr/Makefile b/linux_usr/Makefile index 439494c..c74b4cc 100644 --- a/linux_usr/Makefile +++ b/linux_usr/Makefile @@ -1,4 +1,4 @@ -all: v3_ctrl v3_stop v3_cons v3_mem v3_monitor v3_serial v3_net v3_user_host_dev_example v3_os_debug +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 v3_save v3_load @@ -8,28 +8,43 @@ v3_ctrl : v3_ctrl.c v3_ctrl.h v3_stop : v3_stop.c v3_ctrl.h gcc -static v3_stop.c -o v3_stop +v3_save : v3_save.c v3_ctrl.h + gcc -static v3_save.c -o v3_save +v3_load : v3_load.c v3_ctrl.h + gcc -static v3_load.c -o v3_load + v3_mem : v3_mem.c v3_ctrl.h gcc -static v3_mem.c -o v3_mem -v3_cons : v3_cons.c v3_ctrl.h - gcc -static v3_cons.c -o v3_cons -lcurses +v3_cons : v3_cons.c v3_cons_sc.c v3_ctrl.h + gcc v3_cons.c -o v3_cons -lcurses + gcc v3_cons_sc.c -o v3_cons_sc -lcurses -v3_serial : v3_serial.c v3_ctrl.h - gcc -static v3_serial.c -pthread -o v3_serial +v3_stream : v3_stream.c v3_ctrl.h + gcc -static v3_stream.c -o v3_stream v3_monitor : v3_cons.c v3_ctrl.h gcc -static v3_monitor.c -o v3_monitor -v3_net : v3_net.c v3_ctrl.h - gcc -static v3_net.c -o v3_net - v3_user_host_dev_example: v3_user_host_dev_example.c v3_user_host_dev.h v3_user_host_dev.c gcc -static -I../linux_module v3_user_host_dev_example.c v3_user_host_dev.c -o v3_user_host_dev_example v3_os_debug: v3_os_debug.c v3_user_host_dev.h v3_user_host_dev.c gcc -static -I../linux_module v3_os_debug.c v3_user_host_dev.c -o v3_os_debug +v3_user_keyed_stream_example: v3_user_keyed_stream_example.c v3_user_keyed_stream.h v3_user_keyed_stream.c + gcc -static -I../linux_module v3_user_keyed_stream_example.c v3_user_keyed_stream.c -o v3_user_keyed_stream_example + + +v3_user_keyed_stream_file: v3_user_keyed_stream_file.c v3_user_keyed_stream.h v3_user_keyed_stream.c + gcc -static -I../linux_module v3_user_keyed_stream_file.c v3_user_keyed_stream.c -o v3_user_keyed_stream_file + +v3_core_move : v3_core_move.c v3_ctrl.h + gcc -static v3_core_move.c -o v3_core_move + +v3_inject_ecc_scrubber_mce: v3_inject_ecc_scrubber_mce.c + gcc -static -I../linux_module v3_inject_ecc_scrubber_mce.c -o v3_inject_ecc_scrubber_mce clean: - rm -f v3_ctrl v3_cons v3_mem v3_monitor v3_serial v3_net v3_user_host_dev_example v3_os_debug + 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