X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=linux_usr%2FMakefile;h=3aa822c294aed576cff906d2ffd7bba7390f53de;hb=a78284b06acb02600e70abe4bb5288b8c2fbf253;hp=ed1c7e90fe368be1887555cff444987a247656fe;hpb=ec435fcd55e507e8542e6b0f17af4aaba9a22d9b;p=palacios.git diff --git a/linux_usr/Makefile b/linux_usr/Makefile index ed1c7e9..3aa822c 100644 --- a/linux_usr/Makefile +++ b/linux_usr/Makefile @@ -1,4 +1,5 @@ -all: v3_ctrl v3_stop v3_cons v3_cons_sc v3_mem v3_monitor v3_stream v3_user_host_dev_example v3_os_debug v3_user_keyed_stream_example v3_user_keyed_stream_file +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_ctrl : v3_ctrl.c v3_ctrl.h @@ -11,16 +12,13 @@ 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_stream : v3_stream.c v3_ctrl.h gcc -static v3_stream.c -o v3_stream -v3_cons_sc : v3_cons_sc.c v3_ctrl.h - gcc -static v3_cons_sc.c -o v3_cons_sc -lcurses - - v3_monitor : v3_cons.c v3_ctrl.h gcc -static v3_monitor.c -o v3_monitor @@ -37,8 +35,11 @@ v3_user_keyed_stream_example: v3_user_keyed_stream_example.c v3_user_keyed_strea 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_stream v3_user_host_dev_example v3_os_debug v3_user_keyed_stream_example v3_user_keyed_stream_file + 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