X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=linux_usr%2FMakefile;h=a1e9bb417f2b825555ec7565e3a17a769cfceb6a;hb=77f2eb021784c68fa61ff232a1c2f8489e7cd45d;hp=c2a23aa5f9a0ca12200da36ccb4e8dbb3ad63667;hpb=5ac6ebe490fe6ebb948dd68736c693a3bb2f82dc;p=palacios.releases.git diff --git a/linux_usr/Makefile b/linux_usr/Makefile index c2a23aa..a1e9bb4 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 +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 @@ -15,17 +15,27 @@ v3_mem : v3_mem.c v3_ctrl.h v3_cons : v3_cons.c v3_ctrl.h gcc -static v3_cons.c -o v3_cons -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_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 + 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