2 # Build Static or Dynamic versions of the control utilities
6 # define this at the command-line or here
7 # to get dynamically linked versions
11 # Executables that implement core functionality
39 EXAMPLE_EXECS = v3_user_host_dev_example \
41 v3_user_keyed_stream_example \
42 v3_user_keyed_stream_file \
46 # Currently experimental things
48 EXPERIMENTAL_EXECS = v3_simulate \
49 v3_inject_ecc_scrubber_mce \
59 # Things that have been built elsewhere - just for reference here
61 PRECOMPILED_EXECS = x0vncserver
63 COPIED_EXECS = v3_x0vncserver v3_x0gui
66 # Libraries that we need to build
68 LIBS = libv3_user_host_dev.a libv3_user_keyed_stream.a libv3_ctrl.a libv3_guest_mem.a libv3_fb.a
70 BUILD_EXECS = $(BASE_EXECS) $(EXAMPLE_EXECS) $(EXPERIMENTAL_EXECS)
74 CFILES = $(BUILD_EXECS:%=%.c) $(BUILD_LIBS:lib%.a=%.c)
80 CFLAGS += -I../linux_module
85 all: $(BUILD_EXECS) $(BUILD_LIBS) $(COPIED_EXECS)
88 libv3_ctrl.a : v3_ctrl.c v3_ctrl.h
89 $(CC) $(CFLAGS) -I../linux_module -c v3_ctrl.c
90 $(AR) ruv libv3_ctrl.a v3_ctrl.o
94 # JSON library for use in some tools
96 libjson.a : cJSON.c cJSON.h
97 $(CC) $(CFLAGS) -c cJSON.c
98 $(AR) ruv libjson.a cJSON.o
101 # Most tools compile in a straightforward way
103 % :: %.c v3_ctrl.h libv3_ctrl.a
104 $(CC) $(CFLAGS) $< -lv3_ctrl -L. -o $@
108 # Console support requires curses
111 CURSES_CFLAGS = -DNCURSES_STATIC
112 CURSES_LIBS = -lcurses
115 CURSES_LIBS = -lcurses
119 $(CC) $(CFLAGS) $(CURSES_CFLAGS) $< $(CURSES_LIBS) -o $@
121 v3_cons_sc: v3_cons_sc.c
122 $(CC) $(CFLAGS) $(CURSES_CFLAGS) $< $(CURSES_LIBS) -o $@
124 v3_create: v3_create.c ezxml.c libv3_ctrl.a
125 $(CC) $(CFLAGS) $^ -lv3_ctrl -L. -o $@
130 # User host devices include a library and some examples
132 libv3_user_host_dev.a : v3_user_host_dev.c v3_user_host_dev.h v3_ctrl.h
133 $(CC) $(CFLAGS) -I../linux_module -c v3_user_host_dev.c
134 $(AR) ruv libv3_user_host_dev.a v3_user_host_dev.o
135 rm -f v3_user_host_dev.o
137 v3_user_host_dev_example : v3_user_host_dev_example.c libv3_user_host_dev.a
138 $(CC) $(CFLAGS) $< -I../linux_module -L. -lv3_user_host_dev -o $@
140 v3_os_debug : v3_os_debug.c libv3_user_host_dev.a
141 $(CC) $(CFLAGS) $< -I../linux_module -L. -lv3_user_host_dev -o $@
144 # Guarded module registration for GEARS
146 v3_register_gm: v3_register_gm.c libjson.a libv3_ctrl.a v3_ctrl.h
147 $(CC) $(CFLAGS) $< -L. -lm -lv3_ctrl -ljson -o $@
150 # User keyed stream support includes a library and examples
153 libv3_user_keyed_stream.a :: v3_user_keyed_stream.c v3_user_keyed_stream.h v3_ctrl.h
154 $(CC) $(CFLAGS) -I../linux_module -c v3_user_keyed_stream.c
155 $(AR) ruv libv3_user_keyed_stream.a v3_user_keyed_stream.o
156 rm -f v3_user_keyed_stream.o
159 v3_user_keyed_stream_example : v3_user_keyed_stream_example.c libv3_user_keyed_stream.a
160 $(CC) $(CFLAGS) $< -I../linux_module -L. -lv3_user_keyed_stream -o $@
162 v3_user_keyed_stream_file : v3_user_keyed_stream_file.c libv3_user_keyed_stream.a
163 $(CC) $(CFLAGS) $< -I../linux_module -L. -lv3_user_keyed_stream -o $@
166 # guest memory access by mmap and example
168 libv3_guest_mem.a : v3_guest_mem.c v3_guest_mem.h v3_ctrl.h
169 $(CC) $(CFLAGS) -c v3_guest_mem.c
170 $(AR) ruv libv3_guest_mem.a v3_guest_mem.o
173 v3_guest_mem_example : v3_guest_mem_example.c libv3_guest_mem.a
174 $(CC) $(CFLAGS) $< -L. -lv3_guest_mem -o $@
178 # FB (Graphics Console) user interface library (needed for VNC access
179 # to GC - also wraps mouse and keyboard event delivery)
180 libv3_fb.a : v3_fb.c v3_fb.h
181 $(CC) $(CFLAGS) -I../linux_module -c v3_fb.c
182 $(AR) ruv libv3_fb.a v3_fb.o
188 # VNC support is compiled separately
191 @if [ -a x0vncserver ] ; \
193 cp x0vncserver v3_x0vncserver ; \
195 echo "In order to use v3_vncclient/server you must have" ; \
196 echo "previously built or received palacios/linux_usr/x0vncserver" ; \
197 echo "To learn more about this, look in palacios/linux_usr/vnc"; \
201 # GUI is compiled separately
204 @if [ -a gui/Palacios ] ; \
206 cp gui/Palacios v3_x0gui ; \
208 echo "In order to use v3_gui (the graphical interface)" ;\
209 echo "you must first cd to palacios/linux_usr/gui" ;\
210 echo "and compile it according to the README given there";\
214 # Cleanup and dependency builds are automated
217 rm -f $(BUILD_EXECS) $(BUILD_LIBS) $(COPIED_EXECS)
220 $(CC) -MM $(CFILES) -I../linux_module > .dependencies