1 # Copyright (C) 2002 MandrakeSoft S.A.
6 # http://www.linux-mandrake.com/
7 # http://www.mandrakesoft.com/
9 # This library is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU Lesser General Public
11 # License as published by the Free Software Foundation; either
12 # version 2 of the License, or (at your option) any later version.
14 # This library is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # Lesser General Public License for more details.
19 # You should have received a copy of the GNU Lesser General Public
20 # License along with this library; if not, write to the Free Software
21 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 # Makefile for the gui component of bochs
29 exec_prefix = @
exec_prefix@
34 datarootdir
= @datarootdir@
36 man1dir = $(mandir)/man1
37 man5dir = $(mandir)/man5
38 docdir
= $(datarootdir
)/doc
/bochs
39 sharedir
= $(datarootdir
)/bochs
41 top_srcdir
= @top_srcdir@
48 CXXFLAGS
= $(BX_INCDIRS
) @CXXFLAGS@ @GUI_CXXFLAGS@
57 WIN32_DLL_IMPORT_LIBRARY
=..
/dllexports.a
58 BX_INCDIRS
= -I..
-I
$(srcdir)/..
-I..
/iodev
-I
$(srcdir)/..
/iodev
-I..
/@INSTRUMENT_DIR@
-I
$(srcdir)/..
/@INSTRUMENT_DIR@
62 GUI_OBJS_SVGA
= svga.o
63 GUI_OBJS_BEOS
= beos.o
64 GUI_OBJS_WIN32
= win32.o
65 GUI_OBJS_MACOS
= macintosh.o
66 GUI_OBJS_CARBON
= carbon.o
67 GUI_OBJS_NOGUI
= nogui.o
68 GUI_OBJS_TERM
= term.o
70 GUI_OBJS_AMIGAOS
= amigaos.o
72 GUI_OBJS_WX_SUPPORT
= wxmain.o wxdialog.o
73 OBJS_THAT_CANNOT_BE_PLUGINS
= keymap.o gui.o siminterface.o textconfig.o @DIALOG_OBJS@
74 OBJS_THAT_CAN_BE_PLUGINS
= @GUI_OBJS@
77 X_PRE_LIBS
= @X_PRE_LIBS@
78 GUI_LINK_OPTS_X
= $(X_LIBS
) $(X_PRE_LIBS
) -lX11
-lXpm
79 GUI_LINK_OPTS_SDL
= `sdl-config --cflags --libs`
80 GUI_LINK_OPTS_SVGA
= -lvga
-lvgagl
81 GUI_LINK_OPTS_BEOS
= -lbe
82 GUI_LINK_OPTS_RFB
= @RFB_LIBS@
83 GUI_LINK_OPTS_AMIGAOS
=
84 GUI_LINK_OPTS_WIN32
= -luser32
-lgdi32
-lcomdlg32
-lcomctl32
85 GUI_LINK_OPTS_WIN32_VCPP
= user32.lib gdi32.lib winmm.lib \
86 comdlg32.lib comctl32.lib wsock32.lib
88 GUI_LINK_OPTS_CARBON
= -framework Carbon
90 GUI_LINK_OPTS_TERM
= @GUI_LINK_OPTS_TERM@
91 GUI_LINK_OPTS_WX
= @GUI_LINK_OPTS_WX@
92 GUI_LINK_OPTS
= @GUI_LINK_OPTS@ @DEVICE_LINK_OPTS@
94 NONPLUGIN_OBJS
= @GUI_NON_PLUGIN_OBJS@
95 PLUGIN_OBJS
= @GUI_PLUGIN_OBJS@
98 # -------- end configurable options --------------------------
103 plugins
: $(PLUGIN_OBJS
:@PLUGIN_LIBNAME_TRANSFORMATION@
)
105 libgui.a
: $(NONPLUGIN_OBJS
)
107 @MAKELIB@
$(NONPLUGIN_OBJS
)
110 # standard compile rule for C++ files
112 $(CXX
) @DASH@c
$(CXXFLAGS
) $(LOCAL_CXXFLAGS
) @CXXFP@
$< @OFP@
$@
114 ##### building plugins with libtool
116 $(LIBTOOL
) --mode
=compile
$(CXX
) -c
$(CXXFLAGS
) $(LOCAL_CXXFLAGS
) $< -o
$@
119 $(LIBTOOL
) --mode
=link
$(CXX
) -module
$< -o
$@
-rpath
$(PLUGIN_PATH
)
122 $(LIBTOOL
) --mode
=link
$(CXX
) -module
$< -o
$@
-rpath
$(PLUGIN_PATH
) $(GUI_LINK_OPTS_X
)
125 $(LIBTOOL
) --mode
=link
$(CXX
) -module
$< -o
$@
-rpath
$(PLUGIN_PATH
) $(GUI_LINK_OPTS_SDL
)
127 libbx_svga.la
: svga.lo
128 $(LIBTOOL
) --mode
=link
$(CXX
) -module
$< -o
$@
-rpath
$(PLUGIN_PATH
) $(GUI_LINK_OPTS_SVGA
)
130 libbx_beos.la
: beos.lo
131 $(LIBTOOL
) --mode
=link
$(CXX
) -module
$< -o
$@
-rpath
$(PLUGIN_PATH
) $(GUI_LINK_OPTS_BEOS
)
134 $(LIBTOOL
) --mode
=link
$(CXX
) -module
$< -o
$@
-rpath
$(PLUGIN_PATH
) $(GUI_LINK_OPTS_RFB
)
136 libbx_amigaos.la
: amigaos.lo
137 $(LIBTOOL
) --mode
=link
$(CXX
) -module
$< -o
$@
-rpath
$(PLUGIN_PATH
) $(GUI_LINK_OPTS_AMIGAOS
)
139 libbx_win32.la
: win32.lo
140 $(LIBTOOL
) --mode
=link
$(CXX
) -module
$< -o
$@
-rpath
$(PLUGIN_PATH
) $(GUI_LINK_OPTS_WIN32
)
142 libbx_macos.la
: macos.lo
143 $(LIBTOOL
) --mode
=link
$(CXX
) -module
$< -o
$@
-rpath
$(PLUGIN_PATH
) $(GUI_LINK_OPTS_MACOS
)
145 libbx_carbon.la
: carbon.lo
146 $(LIBTOOL
) --mode
=link
$(CXX
) -module
$< -o
$@
-rpath
$(PLUGIN_PATH
) $(GUI_LINK_OPTS_CARBON
)
148 libbx_nogui.la
: nogui.lo
149 $(LIBTOOL
) --mode
=link
$(CXX
) -module
$< -o
$@
-rpath
$(PLUGIN_PATH
) $(GUI_LINK_OPTS_NOGUI
)
151 libbx_term.la
: term.lo
152 $(LIBTOOL
) --mode
=link
$(CXX
) -module
$< -o
$@
-rpath
$(PLUGIN_PATH
) $(GUI_LINK_OPTS_TERM
)
154 # special link rules for plugins that require more than one object file
155 libbx_wx.la
: $(GUI_OBJS_WX
:.o
=.lo
) $(GUI_OBJS_WX_SUPPORT
:.o
=.lo
)
156 $(LIBTOOL
) --mode
=link
$(CXX
) -module
$(GUI_OBJS_WX
:.o
=.lo
) $(GUI_OBJS_WX_SUPPORT
:.o
=.lo
) -o libbx_wx.la
-rpath
$(PLUGIN_PATH
) $(GUI_LINK_OPTS_WX
)
158 #### building DLLs for win32 (tested on cygwin only)
160 $(CXX
) $(CXXFLAGS
) -shared
-o
$@
$< $(WIN32_DLL_IMPORT_LIBRARY
) $(GUI_LINK_OPTS_WIN32
)
162 bx_wx.dll
: $(GUI_OBJS_WX
) $(GUI_OBJS_WX_SUPPORT
)
163 $(CXX
) $(CXXFLAGS
) -shared
-o bx_wx.dll
$(GUI_OBJS_WX
) $(GUI_OBJS_WX_SUPPORT
) $(WIN32_DLL_IMPORT_LIBRARY
) `wx-config --libs` -luser32
-lgdi32
-lcomdlg32
-lcomctl32
165 bx_sdl.dll
: $(GUI_OBJS_SDL
)
166 $(CXX
) $(CXXFLAGS
) -shared
-o bx_sdl.dll
$(GUI_OBJS_SDL
) $(WIN32_DLL_IMPORT_LIBRARY
) $(GUI_LINK_OPTS_SDL
)
168 bx_rfb.dll
: $(GUI_OBJS_RFB
)
169 $(CXX
) $(CXXFLAGS
) -shared
-o bx_rfb.dll
$(GUI_OBJS_RFB
) $(WIN32_DLL_IMPORT_LIBRARY
) $(GUI_LINK_OPTS_RFB
)
171 # no need to build DLLs for beos.o
172 # no need to build DLLs for x.o
174 ##### end DLL section
177 @RMCOMMAND@
-rf .libs
*.la
*.a
*.lo
*.o
*.dll
182 ###########################################
183 # all other dependencies generated by
184 # gcc -MM -I.. -I../iodev -I../instrument/stubs `wx-config --cxxflags` *.cc | \
185 # sed -e 's/\.cc/.@CPP_SUFFIX@/g'
186 # gcc -MM -I.. -I../iodev -I../instrument/stubs `wx-config --cxxflags` *.cc | \
187 # sed -e 's/\.cc/.@CPP_SUFFIX@/g' -e 's/\.o:/.lo:/g'
189 # This means that every source file is listed twice, once with a .o rule
190 # and then again with an identical .lo rule. The .lo rules are used when
192 ###########################################
193 amigaos.o
: amigaos.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h \
194 ..
/bx_debug
/debug.h ..
/bxversion.h ..
/gui
/siminterface.h \
195 ..
/memory
/memory.h ..
/pc_system.h ..
/plugin.h ..
/extplugin.h ..
/ltdl.h \
196 ..
/gui
/gui.h ..
/gui
/textconfig.h ..
/gui
/keymap.h \
197 ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h ..
/iodev
/pci.h \
198 ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
199 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
200 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
201 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
202 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
203 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
204 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
205 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
207 beos.o
: beos.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
208 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
209 ..
/plugin.h ..
/extplugin.h ..
/ltdl.h ..
/gui
/gui.h ..
/gui
/textconfig.h \
210 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h \
211 ..
/iodev
/pci.h ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
212 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
213 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
214 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
215 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
216 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
217 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
218 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
220 carbon.o
: carbon.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
221 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
222 ..
/plugin.h ..
/extplugin.h ..
/ltdl.h ..
/gui
/gui.h ..
/gui
/textconfig.h \
223 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h \
224 ..
/iodev
/pci.h ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
225 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
226 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
227 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
228 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
229 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
230 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
231 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
233 gui.o
: gui.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
234 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
235 ..
/plugin.h ..
/extplugin.h ..
/ltdl.h ..
/gui
/gui.h ..
/gui
/textconfig.h \
236 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h \
237 ..
/iodev
/pci.h ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
238 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
239 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
240 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
241 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
242 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
243 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
244 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
245 ..
/iodev
/gameport.h ..
/gui
/bitmaps
/floppya.h ..
/gui
/bitmaps
/floppyb.h \
246 ..
/gui
/bitmaps
/mouse.h ..
/gui
/bitmaps
/reset.h ..
/gui
/bitmaps
/power.h \
247 ..
/gui
/bitmaps
/snapshot.h ..
/gui
/bitmaps
/copy.h ..
/gui
/bitmaps
/paste.h \
248 ..
/gui
/bitmaps
/configbutton.h ..
/gui
/bitmaps
/cdromd.h \
249 ..
/gui
/bitmaps
/userbutton.h ..
/gui
/bitmaps
/saverestore.h
250 keymap.o
: keymap.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
251 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
252 ..
/plugin.h ..
/extplugin.h ..
/ltdl.h ..
/gui
/gui.h ..
/gui
/textconfig.h \
253 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h
254 macintosh.o
: macintosh.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h \
255 ..
/bx_debug
/debug.h ..
/bxversion.h ..
/gui
/siminterface.h \
256 ..
/memory
/memory.h ..
/pc_system.h ..
/plugin.h ..
/extplugin.h ..
/ltdl.h \
257 ..
/gui
/gui.h ..
/gui
/textconfig.h ..
/gui
/keymap.h \
258 ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h ..
/iodev
/pci.h \
259 ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
260 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
261 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
262 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
263 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
264 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
265 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
266 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
268 nogui.o
: nogui.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
269 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
270 ..
/plugin.h ..
/extplugin.h ..
/ltdl.h ..
/gui
/gui.h ..
/gui
/textconfig.h \
271 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h icon_bochs.h
272 rfb.o
: rfb.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
273 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
274 ..
/plugin.h ..
/extplugin.h ..
/ltdl.h ..
/gui
/gui.h ..
/gui
/textconfig.h \
275 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h \
276 ..
/iodev
/pci.h ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
277 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
278 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
279 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
280 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
281 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
282 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
283 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
284 ..
/iodev
/gameport.h icon_bochs.h ..
/font
/vga.bitmap.h sdl.h rfb.h
285 sdl.o
: sdl.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
286 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
287 ..
/plugin.h ..
/extplugin.h ..
/ltdl.h ..
/gui
/gui.h ..
/gui
/textconfig.h \
288 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h \
289 ..
/iodev
/pci.h ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
290 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
291 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
292 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
293 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
294 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
295 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
296 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
297 ..
/iodev
/gameport.h icon_bochs.h sdl.h sdlkeys.h
298 siminterface.o
: siminterface.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h \
299 ..
/bx_debug
/debug.h ..
/bxversion.h ..
/gui
/siminterface.h \
300 ..
/memory
/memory.h ..
/pc_system.h ..
/plugin.h ..
/extplugin.h ..
/ltdl.h \
301 ..
/gui
/gui.h ..
/gui
/textconfig.h ..
/gui
/keymap.h \
302 ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h ..
/iodev
/pci.h \
303 ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
304 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
305 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
306 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
307 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
308 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
309 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
310 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
312 svga.o
: svga.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
313 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
314 ..
/plugin.h ..
/extplugin.h ..
/ltdl.h ..
/gui
/gui.h ..
/gui
/textconfig.h \
315 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h \
316 ..
/iodev
/pci.h ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
317 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
318 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
319 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
320 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
321 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
322 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
323 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
325 term.o
: term.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
326 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
327 ..
/plugin.h ..
/extplugin.h ..
/ltdl.h ..
/gui
/gui.h ..
/gui
/textconfig.h \
328 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h \
329 ..
/iodev
/pci.h ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
330 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
331 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
332 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
333 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
334 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
335 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
336 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
337 ..
/iodev
/gameport.h icon_bochs.h
338 textconfig.o
: textconfig.@CPP_SUFFIX@ ..
/config.h ..
/osdep.h textconfig.h \
339 siminterface.h ..
/extplugin.h
340 win32.o
: win32.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
341 ..
/config.h ..
/osdep.h ..
/bxversion.h ..
/gui
/siminterface.h \
342 ..
/memory
/memory.h ..
/pc_system.h ..
/plugin.h ..
/extplugin.h \
343 ..
/gui
/gui.h ..
/gui
/textconfig.h ..
/config.h ..
/gui
/keymap.h \
344 ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h ..
/bochs.h \
345 ..
/iodev
/pci.h ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/acpi.h \
346 ..
/iodev
/pcivga.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
347 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
348 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
349 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
350 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
351 ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h ..
/iodev
/guest2host.h \
352 ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h ..
/iodev
/gameport.h \
353 win32dialog.h ..
/config.h win32res.h ..
/font
/vga.bitmap.h
354 win32_enh_dbg.o
: win32_enh_dbg.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h \
355 ..
/bx_debug
/debug.h ..
/config.h ..
/osdep.h ..
/bxversion.h \
356 ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h ..
/plugin.h \
357 ..
/extplugin.h ..
/gui
/gui.h ..
/gui
/textconfig.h ..
/config.h \
358 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h ..
/cpu
/cpu.h \
359 ..
/disasm
/disasm.h ..
/config.h ..
/cpu
/crregs.h ..
/cpu
/descriptor.h \
360 ..
/cpu
/instr.h ..
/cpu
/lazy_flags.h ..
/cpu
/icache.h ..
/cpu
/apic.h \
361 ..
/cpu
/i387.h ..
/fpu
/softfloat.h ..
/config.h ..
/fpu
/tag_w.h \
362 ..
/fpu
/status_w.h ..
/fpu
/control_w.h ..
/cpu
/xmm.h win32dialog.h \
363 wenhdbg_h.h ..
/iodev
/iodev.h ..
/bochs.h ..
/iodev
/pci.h \
364 ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/acpi.h ..
/iodev
/pcivga.h \
365 ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h ..
/iodev
/ioapic.h ..
/cpu
/apic.h \
366 ..
/iodev
/biosdev.h ..
/iodev
/cmos.h ..
/iodev
/dma.h ..
/iodev
/floppy.h \
367 ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h ..
/iodev
/parallel.h \
368 ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h ..
/iodev
/pit82c54.h \
369 ..
/iodev
/virt_timer.h ..
/iodev
/serial.h ..
/iodev
/unmapped.h \
370 ..
/iodev
/ne2k.h ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h \
371 ..
/iodev
/extfpuirq.h ..
/iodev
/gameport.h wenhdbg_res.h
372 win32dialog.o
: win32dialog.@CPP_SUFFIX@ win32dialog.h ..
/config.h ..
/bochs.h \
373 ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h ..
/config.h ..
/osdep.h \
374 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
375 ..
/plugin.h ..
/extplugin.h ..
/gui
/gui.h ..
/gui
/textconfig.h ..
/config.h \
376 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h win32res.h
377 wx.o
: wx.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
378 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
379 ..
/plugin.h ..
/extplugin.h ..
/ltdl.h ..
/gui
/gui.h ..
/gui
/textconfig.h \
380 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h \
381 ..
/iodev
/pci.h ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
382 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
383 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
384 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
385 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
386 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
387 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
388 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
389 ..
/iodev
/gameport.h ..
/font
/vga.bitmap.h wxmain.h
390 wxdialog.o
: wxdialog.@CPP_SUFFIX@ ..
/config.h ..
/osdep.h ..
/gui
/siminterface.h \
391 ..
/bxversion.h wxdialog.h wxmain.h
392 wxmain.o
: wxmain.@CPP_SUFFIX@ ..
/config.h ..
/osdep.h ..
/gui
/siminterface.h \
393 ..
/bxversion.h wxdialog.h wxmain.h ..
/extplugin.h \
394 ..
/ltdl.h bitmaps
/cdromd.xpm bitmaps
/copy.xpm bitmaps
/floppya.xpm \
395 bitmaps
/floppyb.xpm bitmaps
/paste.xpm bitmaps
/power.xpm \
396 bitmaps
/reset.xpm bitmaps
/snapshot.xpm bitmaps
/mouse.xpm \
397 bitmaps
/userbutton.xpm bitmaps
/saverestore.xpm icon_bochs.xpm
398 x.o
: x.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
399 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
400 ..
/plugin.h ..
/extplugin.h ..
/ltdl.h ..
/gui
/gui.h ..
/gui
/textconfig.h \
401 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h \
402 ..
/iodev
/pci.h ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
403 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
404 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
405 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
406 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
407 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
408 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
409 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
410 ..
/iodev
/gameport.h icon_bochs.xpm ..
/font
/vga.bitmap.h
411 amigaos.lo
: amigaos.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h \
412 ..
/bx_debug
/debug.h ..
/bxversion.h ..
/gui
/siminterface.h \
413 ..
/memory
/memory.h ..
/pc_system.h ..
/plugin.h ..
/extplugin.h ..
/ltdl.h \
414 ..
/gui
/gui.h ..
/gui
/textconfig.h ..
/gui
/keymap.h \
415 ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h ..
/iodev
/pci.h \
416 ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
417 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
418 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
419 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
420 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
421 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
422 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
423 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
425 beos.lo
: beos.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
426 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
427 ..
/plugin.h ..
/extplugin.h ..
/ltdl.h ..
/gui
/gui.h ..
/gui
/textconfig.h \
428 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h \
429 ..
/iodev
/pci.h ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
430 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
431 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
432 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
433 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
434 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
435 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
436 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
438 carbon.lo
: carbon.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
439 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
440 ..
/plugin.h ..
/extplugin.h ..
/ltdl.h ..
/gui
/gui.h ..
/gui
/textconfig.h \
441 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h \
442 ..
/iodev
/pci.h ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
443 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
444 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
445 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
446 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
447 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
448 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
449 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
451 gui.lo
: gui.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
452 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
453 ..
/plugin.h ..
/extplugin.h ..
/ltdl.h ..
/gui
/gui.h ..
/gui
/textconfig.h \
454 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h \
455 ..
/iodev
/pci.h ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
456 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
457 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
458 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
459 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
460 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
461 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
462 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
463 ..
/iodev
/gameport.h ..
/gui
/bitmaps
/floppya.h ..
/gui
/bitmaps
/floppyb.h \
464 ..
/gui
/bitmaps
/mouse.h ..
/gui
/bitmaps
/reset.h ..
/gui
/bitmaps
/power.h \
465 ..
/gui
/bitmaps
/snapshot.h ..
/gui
/bitmaps
/copy.h ..
/gui
/bitmaps
/paste.h \
466 ..
/gui
/bitmaps
/configbutton.h ..
/gui
/bitmaps
/cdromd.h \
467 ..
/gui
/bitmaps
/userbutton.h ..
/gui
/bitmaps
/saverestore.h
468 keymap.lo
: keymap.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
469 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
470 ..
/plugin.h ..
/extplugin.h ..
/ltdl.h ..
/gui
/gui.h ..
/gui
/textconfig.h \
471 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h
472 macintosh.lo
: macintosh.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h \
473 ..
/bx_debug
/debug.h ..
/bxversion.h ..
/gui
/siminterface.h \
474 ..
/memory
/memory.h ..
/pc_system.h ..
/plugin.h ..
/extplugin.h ..
/ltdl.h \
475 ..
/gui
/gui.h ..
/gui
/textconfig.h ..
/gui
/keymap.h \
476 ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h ..
/iodev
/pci.h \
477 ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
478 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
479 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
480 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
481 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
482 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
483 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
484 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
486 nogui.lo
: nogui.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
487 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
488 ..
/plugin.h ..
/extplugin.h ..
/ltdl.h ..
/gui
/gui.h ..
/gui
/textconfig.h \
489 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h icon_bochs.h
490 rfb.lo
: rfb.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
491 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
492 ..
/plugin.h ..
/extplugin.h ..
/ltdl.h ..
/gui
/gui.h ..
/gui
/textconfig.h \
493 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h \
494 ..
/iodev
/pci.h ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
495 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
496 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
497 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
498 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
499 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
500 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
501 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
502 ..
/iodev
/gameport.h icon_bochs.h ..
/font
/vga.bitmap.h sdl.h rfb.h
503 sdl.lo
: sdl.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
504 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
505 ..
/plugin.h ..
/extplugin.h ..
/ltdl.h ..
/gui
/gui.h ..
/gui
/textconfig.h \
506 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h \
507 ..
/iodev
/pci.h ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
508 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
509 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
510 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
511 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
512 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
513 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
514 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
515 ..
/iodev
/gameport.h icon_bochs.h sdl.h sdlkeys.h
516 siminterface.lo
: siminterface.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h \
517 ..
/bx_debug
/debug.h ..
/bxversion.h ..
/gui
/siminterface.h \
518 ..
/memory
/memory.h ..
/pc_system.h ..
/plugin.h ..
/extplugin.h ..
/ltdl.h \
519 ..
/gui
/gui.h ..
/gui
/textconfig.h ..
/gui
/keymap.h \
520 ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h ..
/iodev
/pci.h \
521 ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
522 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
523 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
524 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
525 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
526 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
527 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
528 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
530 svga.lo
: svga.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
531 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
532 ..
/plugin.h ..
/extplugin.h ..
/ltdl.h ..
/gui
/gui.h ..
/gui
/textconfig.h \
533 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h \
534 ..
/iodev
/pci.h ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
535 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
536 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
537 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
538 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
539 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
540 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
541 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
543 term.lo
: term.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
544 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
545 ..
/plugin.h ..
/extplugin.h ..
/ltdl.h ..
/gui
/gui.h ..
/gui
/textconfig.h \
546 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h \
547 ..
/iodev
/pci.h ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
548 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
549 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
550 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
551 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
552 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
553 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
554 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
555 ..
/iodev
/gameport.h icon_bochs.h
556 textconfig.lo
: textconfig.@CPP_SUFFIX@ ..
/config.h ..
/osdep.h textconfig.h \
557 siminterface.h ..
/extplugin.h ..
/ltdl.h
558 win32.lo
: win32.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
559 ..
/config.h ..
/osdep.h ..
/bxversion.h ..
/gui
/siminterface.h \
560 ..
/memory
/memory.h ..
/pc_system.h ..
/plugin.h ..
/extplugin.h \
561 ..
/gui
/gui.h ..
/gui
/textconfig.h ..
/config.h ..
/gui
/keymap.h \
562 ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h ..
/bochs.h \
563 ..
/iodev
/pci.h ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/acpi.h \
564 ..
/iodev
/pcivga.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
565 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
566 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
567 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
568 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
569 ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h ..
/iodev
/guest2host.h \
570 ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h ..
/iodev
/gameport.h \
571 win32dialog.h ..
/config.h win32res.h ..
/font
/vga.bitmap.h
572 win32_enh_dbg.lo
: win32_enh_dbg.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h \
573 ..
/bx_debug
/debug.h ..
/config.h ..
/osdep.h ..
/bxversion.h \
574 ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h ..
/plugin.h \
575 ..
/extplugin.h ..
/gui
/gui.h ..
/gui
/textconfig.h ..
/config.h \
576 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h ..
/cpu
/cpu.h \
577 ..
/disasm
/disasm.h ..
/config.h ..
/cpu
/crregs.h ..
/cpu
/descriptor.h \
578 ..
/cpu
/instr.h ..
/cpu
/lazy_flags.h ..
/cpu
/icache.h ..
/cpu
/apic.h \
579 ..
/cpu
/i387.h ..
/fpu
/softfloat.h ..
/config.h ..
/fpu
/tag_w.h \
580 ..
/fpu
/status_w.h ..
/fpu
/control_w.h ..
/cpu
/xmm.h win32dialog.h \
581 wenhdbg_h.h ..
/iodev
/iodev.h ..
/bochs.h ..
/iodev
/pci.h \
582 ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/acpi.h ..
/iodev
/pcivga.h \
583 ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h ..
/iodev
/ioapic.h ..
/cpu
/apic.h \
584 ..
/iodev
/biosdev.h ..
/iodev
/cmos.h ..
/iodev
/dma.h ..
/iodev
/floppy.h \
585 ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h ..
/iodev
/parallel.h \
586 ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h ..
/iodev
/pit82c54.h \
587 ..
/iodev
/virt_timer.h ..
/iodev
/serial.h ..
/iodev
/unmapped.h \
588 ..
/iodev
/ne2k.h ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h \
589 ..
/iodev
/extfpuirq.h ..
/iodev
/gameport.h wenhdbg_res.h
590 win32dialog.lo
: win32dialog.@CPP_SUFFIX@ win32dialog.h ..
/config.h ..
/bochs.h \
591 ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h ..
/config.h ..
/osdep.h \
592 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
593 ..
/plugin.h ..
/extplugin.h ..
/gui
/gui.h ..
/gui
/textconfig.h ..
/config.h \
594 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h win32res.h
595 wx.lo
: wx.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
596 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
597 ..
/plugin.h ..
/extplugin.h ..
/ltdl.h ..
/gui
/gui.h ..
/gui
/textconfig.h \
598 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h \
599 ..
/iodev
/pci.h ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
600 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
601 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
602 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
603 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
604 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
605 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
606 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
607 ..
/iodev
/gameport.h ..
/font
/vga.bitmap.h wxmain.h
608 wxdialog.lo
: wxdialog.@CPP_SUFFIX@ ..
/config.h ..
/osdep.h ..
/gui
/siminterface.h \
609 ..
/bxversion.h wxdialog.h wxmain.h
610 wxmain.lo
: wxmain.@CPP_SUFFIX@ ..
/config.h ..
/osdep.h ..
/gui
/siminterface.h \
611 ..
/bxversion.h wxdialog.h wxmain.h ..
/extplugin.h \
612 ..
/ltdl.h bitmaps
/cdromd.xpm bitmaps
/copy.xpm bitmaps
/floppya.xpm \
613 bitmaps
/floppyb.xpm bitmaps
/paste.xpm bitmaps
/power.xpm \
614 bitmaps
/reset.xpm bitmaps
/snapshot.xpm bitmaps
/mouse.xpm \
615 bitmaps
/userbutton.xpm bitmaps
/saverestore.xpm icon_bochs.xpm
616 x.lo
: x.@CPP_SUFFIX@ ..
/bochs.h ..
/config.h ..
/osdep.h ..
/bx_debug
/debug.h \
617 ..
/bxversion.h ..
/gui
/siminterface.h ..
/memory
/memory.h ..
/pc_system.h \
618 ..
/plugin.h ..
/extplugin.h ..
/ltdl.h ..
/gui
/gui.h ..
/gui
/textconfig.h \
619 ..
/gui
/keymap.h ..
/instrument
/stubs
/instrument.h ..
/iodev
/iodev.h \
620 ..
/iodev
/pci.h ..
/iodev
/pci2isa.h ..
/iodev
/pci_ide.h ..
/iodev
/pcivga.h \
621 ..
/iodev
/pciusb.h ..
/iodev
/vga.h ..
/iodev
/svga_cirrus.h \
622 ..
/iodev
/ioapic.h ..
/cpu
/apic.h ..
/iodev
/biosdev.h ..
/iodev
/cmos.h \
623 ..
/iodev
/dma.h ..
/iodev
/floppy.h ..
/iodev
/harddrv.h ..
/iodev
/keyboard.h \
624 ..
/iodev
/parallel.h ..
/iodev
/pic.h ..
/iodev
/pit_wrap.h \
625 ..
/iodev
/pit82c54.h ..
/iodev
/virt_timer.h ..
/iodev
/serial.h \
626 ..
/iodev
/sb16.h ..
/iodev
/unmapped.h ..
/iodev
/ne2k.h \
627 ..
/iodev
/guest2host.h ..
/iodev
/slowdown_timer.h ..
/iodev
/extfpuirq.h \
628 ..
/iodev
/gameport.h icon_bochs.xpm ..
/font
/vga.bitmap.h