all: v3_ctrl v3_stop v3_cons v3_mem v3_monitor v3_stream v3_net v3_user_host_dev_example v3_os_debug v3_user_keyed_stream_example v3_user_keyed_stream_file v3_ctrl : v3_ctrl.c v3_ctrl.h gcc -static v3_ctrl.c -o v3_ctrl v3_stop : v3_stop.c v3_ctrl.h gcc -static v3_stop.c -o v3_stop 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_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_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 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