2015-02-20 00:31:18 +03:00
|
|
|
# Copyright (C) 2001-2015 The Bochs Project
|
2001-04-10 05:04:59 +04:00
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the Free Software
|
2009-02-08 12:05:52 +03:00
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
# Makefile for the iodev component of bochs
|
|
|
|
|
|
|
|
|
|
|
|
@SUFFIX_LINE@
|
|
|
|
|
2002-10-28 11:42:06 +03:00
|
|
|
prefix = @prefix@
|
|
|
|
exec_prefix = @exec_prefix@
|
|
|
|
srcdir = @srcdir@
|
2001-09-14 08:19:08 +04:00
|
|
|
VPATH = @srcdir@
|
2002-10-28 11:42:06 +03:00
|
|
|
bindir = @bindir@
|
|
|
|
libdir = @libdir@
|
2007-09-23 12:45:14 +04:00
|
|
|
datarootdir = @datarootdir@
|
2002-10-28 11:42:06 +03:00
|
|
|
mandir = @mandir@
|
|
|
|
man1dir = $(mandir)/man1
|
|
|
|
man5dir = $(mandir)/man5
|
2007-09-23 12:45:14 +04:00
|
|
|
docdir = $(datarootdir)/doc/bochs
|
|
|
|
sharedir = $(datarootdir)/bochs
|
2002-10-25 01:07:56 +04:00
|
|
|
top_builddir = ..
|
|
|
|
top_srcdir = @top_srcdir@
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2012-07-14 11:01:43 +04:00
|
|
|
SHELL = @SHELL@
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
@SET_MAKE@
|
|
|
|
|
|
|
|
CXX = @CXX@
|
2002-10-25 01:07:56 +04:00
|
|
|
CXXFLAGS = $(BX_INCDIRS) @CXXFLAGS@ @GUI_CXXFLAGS@
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
LDFLAGS = @LDFLAGS@
|
|
|
|
LIBS = @LIBS@
|
|
|
|
RANLIB = @RANLIB@
|
2002-10-25 01:07:56 +04:00
|
|
|
PLUGIN_PATH=@libdir@
|
|
|
|
top_builddir = ..
|
|
|
|
LIBTOOL=@LIBTOOL@
|
Next step for plugin support with MSVC nmake: device plugins that need special
rules can be built now (keyboard, pit, gameport, serial, vga, svga_cirrus,
hdimage, netmod, soundmod, usb_common). The generated DLLs are usable with the
BOCHS.EXE built with the IDE, but the nmake won't work at all yet.
2014-04-21 22:43:22 +04:00
|
|
|
WIN32_DLL_IMPORT_LIBRARY=../@WIN32_DLL_IMPORT_LIB@
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2001-09-14 08:19:08 +04:00
|
|
|
BX_INCDIRS = -I.. -I$(srcdir)/.. -I../@INSTRUMENT_DIR@ -I$(srcdir)/../@INSTRUMENT_DIR@
|
2001-04-10 05:04:59 +04:00
|
|
|
LOCAL_CXXFLAGS = $(MCH_CFLAGS)
|
|
|
|
|
Next step for plugin support with MSVC nmake: device plugins that need special
rules can be built now (keyboard, pit, gameport, serial, vga, svga_cirrus,
hdimage, netmod, soundmod, usb_common). The generated DLLs are usable with the
BOCHS.EXE built with the IDE, but the nmake won't work at all yet.
2014-04-21 22:43:22 +04:00
|
|
|
GAME_LINK_OPTS = -lwinmm
|
|
|
|
GAME_LINK_OPTS_VCPP = winmm.lib
|
|
|
|
SER_LINK_OPTS = -lws2_32
|
|
|
|
SER_LINK_OPTS_VCPP = user32.lib ws2_32.lib
|
2014-04-25 00:10:55 +04:00
|
|
|
FDC_LINK_OPTS =
|
|
|
|
FDC_LINK_OPTS_VCPP = user32.lib
|
2014-12-28 22:13:02 +03:00
|
|
|
IODEV_DLL_TARGETS = @IODEV_DLL_TARGETS@
|
Next step for plugin support with MSVC nmake: device plugins that need special
rules can be built now (keyboard, pit, gameport, serial, vga, svga_cirrus,
hdimage, netmod, soundmod, usb_common). The generated DLLs are usable with the
BOCHS.EXE built with the IDE, but the nmake won't work at all yet.
2014-04-21 22:43:22 +04:00
|
|
|
|
2005-06-07 09:54:57 +04:00
|
|
|
PCIDEV_CXXFLAGS = -I$(srcdir)/../host/linux/pcidev
|
2004-01-15 05:08:37 +03:00
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
OBJS_THAT_CANNOT_BE_PLUGINS = \
|
2001-04-10 05:04:59 +04:00
|
|
|
devices.o \
|
2003-02-17 06:58:29 +03:00
|
|
|
virt_timer.o \
|
2003-08-19 04:10:39 +04:00
|
|
|
slowdown_timer.o \
|
2009-02-22 13:44:50 +03:00
|
|
|
$(MCH_OBJS)
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
OBJS_THAT_CAN_BE_PLUGINS = \
|
|
|
|
pic.o \
|
2012-01-15 12:50:20 +04:00
|
|
|
pit.o \
|
2002-10-25 01:07:56 +04:00
|
|
|
serial.o \
|
|
|
|
parallel.o \
|
|
|
|
floppy.o \
|
|
|
|
keyboard.o \
|
|
|
|
biosdev.o \
|
|
|
|
cmos.o \
|
|
|
|
harddrv.o \
|
|
|
|
dma.o \
|
2002-11-09 23:51:40 +03:00
|
|
|
unmapped.o \
|
2003-01-06 05:20:47 +03:00
|
|
|
extfpuirq.o \
|
2004-02-02 02:42:04 +03:00
|
|
|
speaker.o \
|
2009-11-20 17:58:48 +03:00
|
|
|
ioapic.o \
|
2014-03-23 16:00:58 +04:00
|
|
|
@BUSM_OBJS@ \
|
|
|
|
@PCI_OBJS@ \
|
2011-03-12 20:37:26 +03:00
|
|
|
@GAME_OBJS@ \
|
2009-11-20 17:58:48 +03:00
|
|
|
@IODEBUG_OBJS@
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
OBJS_THAT_SUPPORT_OTHER_PLUGINS = \
|
2009-01-11 21:46:01 +03:00
|
|
|
pit82c54.o \
|
2002-10-25 01:07:56 +04:00
|
|
|
scancodes.o \
|
2012-09-11 00:49:29 +04:00
|
|
|
serial_raw.o
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
NONPLUGIN_OBJS = @IODEV_NON_PLUGIN_OBJS@
|
|
|
|
PLUGIN_OBJS = @IODEV_PLUGIN_OBJS@
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2008-01-27 01:24:03 +03:00
|
|
|
all: libiodev.a
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2014-04-06 11:22:16 +04:00
|
|
|
plugins: @PLUGIN_TARGET_2@
|
|
|
|
|
|
|
|
plugins_gcc: $(PLUGIN_OBJS:@PLUGIN_LIBNAME_TRANSFORMATION@)
|
|
|
|
|
2014-05-02 21:14:16 +04:00
|
|
|
plugins_msvc: $(IODEV_DLL_TARGETS) bx_keyboard.dll bx_pit.dll bx_gameport.dll bx_serial.dll bx_floppy.dll
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
libiodev.a: $(NONPLUGIN_OBJS)
|
2001-04-10 05:04:59 +04:00
|
|
|
@RMCOMMAND@ libiodev.a
|
2002-10-25 01:07:56 +04:00
|
|
|
@MAKELIB@ $(NONPLUGIN_OBJS)
|
2014-01-04 01:58:04 +04:00
|
|
|
$(RANLIB) libiodev.a
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
# standard compile rule for C++ files
|
2002-11-20 23:36:05 +03:00
|
|
|
.@CPP_SUFFIX@.o:
|
|
|
|
$(CXX) @DASH@c $(CXXFLAGS) $(LOCAL_CXXFLAGS) @CXXFP@$< @OFP@$@
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2004-12-13 22:10:38 +03:00
|
|
|
pcidev.o : pcidev.@CPP_SUFFIX@
|
2004-01-15 05:08:37 +03:00
|
|
|
$(CXX) @DASH@c $(CXXFLAGS) $(LOCAL_CXXFLAGS) $(PCIDEV_CXXFLAGS) @CXXFP@$< @OFP@$@
|
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
##### building plugins with libtool
|
|
|
|
%.lo: %.@CPP_SUFFIX@
|
2012-07-14 11:01:43 +04:00
|
|
|
$(LIBTOOL) --mode=compile --tag CXX $(CXX) -c $(CXXFLAGS) $(LOCAL_CXXFLAGS) $< -o $@
|
2002-10-25 01:07:56 +04:00
|
|
|
|
2004-12-13 22:10:38 +03:00
|
|
|
pcidev.lo : pcidev.@CPP_SUFFIX@
|
2012-07-14 11:01:43 +04:00
|
|
|
$(LIBTOOL) --mode=compile --tag CXX $(CXX) -c $(CXXFLAGS) $(LOCAL_CXXFLAGS) $(PCIDEV_CXXFLAGS) $< -o $@
|
2004-01-15 05:08:37 +03:00
|
|
|
|
2002-11-14 21:45:49 +03:00
|
|
|
libbx_%.la: %.lo
|
2012-07-14 11:01:43 +04:00
|
|
|
$(LIBTOOL) --mode=link --tag CXX $(CXX) -module $< -o $@ -rpath $(PLUGIN_PATH)
|
2002-10-25 01:07:56 +04:00
|
|
|
|
|
|
|
# special link rules for plugins that require more than one object file
|
2002-11-14 21:45:49 +03:00
|
|
|
libbx_keyboard.la: keyboard.lo scancodes.lo
|
2012-07-14 11:01:43 +04:00
|
|
|
$(LIBTOOL) --mode=link --tag CXX $(CXX) -module keyboard.lo scancodes.lo -o libbx_keyboard.la -rpath $(PLUGIN_PATH)
|
2002-10-25 01:07:56 +04:00
|
|
|
|
2012-01-15 12:50:20 +04:00
|
|
|
libbx_pit.la: pit82c54.lo pit.lo
|
2012-07-14 11:01:43 +04:00
|
|
|
$(LIBTOOL) --mode=link --tag CXX $(CXX) -module pit82c54.lo pit.lo -o libbx_pit.la -rpath $(PLUGIN_PATH)
|
2002-10-25 01:07:56 +04:00
|
|
|
|
2004-01-18 04:30:14 +03:00
|
|
|
libbx_serial.la: serial.lo serial_raw.lo
|
2012-07-14 11:01:43 +04:00
|
|
|
$(LIBTOOL) --mode=link --tag CXX $(CXX) -module serial.lo serial_raw.lo -o libbx_serial.la -rpath $(PLUGIN_PATH)
|
2004-01-18 04:30:14 +03:00
|
|
|
|
2014-04-25 20:07:26 +04:00
|
|
|
#### building DLLs for win32 (Cygwin and MinGW/MSYS)
|
2002-11-14 21:45:49 +03:00
|
|
|
bx_%.dll: %.o
|
2002-10-25 01:07:56 +04:00
|
|
|
$(CXX) $(CXXFLAGS) -shared -o $@ $< $(WIN32_DLL_IMPORT_LIBRARY)
|
|
|
|
|
2014-04-25 20:07:26 +04:00
|
|
|
# special link rules for plugins with Cygwin, MinGW/MSYS and MSVC nmake
|
2002-11-14 21:45:49 +03:00
|
|
|
bx_keyboard.dll: keyboard.o scancodes.o
|
Next step for plugin support with MSVC nmake: device plugins that need special
rules can be built now (keyboard, pit, gameport, serial, vga, svga_cirrus,
hdimage, netmod, soundmod, usb_common). The generated DLLs are usable with the
BOCHS.EXE built with the IDE, but the nmake won't work at all yet.
2014-04-21 22:43:22 +04:00
|
|
|
@LINK_DLL@ keyboard.o scancodes.o $(WIN32_DLL_IMPORT_LIBRARY)
|
2002-10-25 01:07:56 +04:00
|
|
|
|
2012-01-15 12:50:20 +04:00
|
|
|
bx_pit.dll: pit82c54.o pit.o
|
Next step for plugin support with MSVC nmake: device plugins that need special
rules can be built now (keyboard, pit, gameport, serial, vga, svga_cirrus,
hdimage, netmod, soundmod, usb_common). The generated DLLs are usable with the
BOCHS.EXE built with the IDE, but the nmake won't work at all yet.
2014-04-21 22:43:22 +04:00
|
|
|
@LINK_DLL@ pit82c54.o pit.o $(WIN32_DLL_IMPORT_LIBRARY)
|
2002-11-13 21:39:41 +03:00
|
|
|
|
2003-12-22 01:36:37 +03:00
|
|
|
bx_gameport.dll: gameport.o
|
Next step for plugin support with MSVC nmake: device plugins that need special
rules can be built now (keyboard, pit, gameport, serial, vga, svga_cirrus,
hdimage, netmod, soundmod, usb_common). The generated DLLs are usable with the
BOCHS.EXE built with the IDE, but the nmake won't work at all yet.
2014-04-21 22:43:22 +04:00
|
|
|
@LINK_DLL@ gameport.o $(WIN32_DLL_IMPORT_LIBRARY) $(GAME_LINK_OPTS@LINK_VAR@)
|
2004-01-18 04:30:14 +03:00
|
|
|
|
|
|
|
bx_serial.dll: serial.o serial_raw.o
|
Next step for plugin support with MSVC nmake: device plugins that need special
rules can be built now (keyboard, pit, gameport, serial, vga, svga_cirrus,
hdimage, netmod, soundmod, usb_common). The generated DLLs are usable with the
BOCHS.EXE built with the IDE, but the nmake won't work at all yet.
2014-04-21 22:43:22 +04:00
|
|
|
@LINK_DLL@ serial.o serial_raw.o $(WIN32_DLL_IMPORT_LIBRARY) $(SER_LINK_OPTS@LINK_VAR@)
|
2004-01-18 04:30:14 +03:00
|
|
|
|
2014-04-25 00:10:55 +04:00
|
|
|
bx_floppy.dll: floppy.o
|
|
|
|
@LINK_DLL@ floppy.o $(WIN32_DLL_IMPORT_LIBRARY) $(FDC_LINK_OPTS@LINK_VAR@)
|
|
|
|
|
2014-12-28 22:13:02 +03:00
|
|
|
@EXT_MSVC_DLL_RULES@
|
2014-05-02 21:14:16 +04:00
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
##### end DLL section
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
clean:
|
2014-07-26 10:54:34 +04:00
|
|
|
@RMCOMMAND@ -rf .libs *.lo *.o *.la *.a *.dll *.exp *.lib
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
dist-clean: clean
|
2014-05-03 14:58:10 +04:00
|
|
|
@RMCOMMAND@ Makefile makeincl.vc
|
2001-10-07 04:33:21 +04:00
|
|
|
|
|
|
|
###########################################
|
|
|
|
# dependencies generated by
|
2002-11-25 18:05:51 +03:00
|
|
|
# gcc -MM -I.. -I../instrument/stubs *.cc | sed -e 's/\.cc/.@CPP_SUFFIX@/g'
|
|
|
|
# gcc -MM -I.. -I../instrument/stubs *.cc | \
|
|
|
|
# sed -e 's/\.cc/.@CPP_SUFFIX@/g' -e 's/\.o:/.lo:/g'
|
|
|
|
#
|
|
|
|
# This means that every source file is listed twice, once with a .o rule
|
|
|
|
# and then again with an identical .lo rule. The .lo rules are used when
|
|
|
|
# building plugins.
|
2001-10-07 04:33:21 +04:00
|
|
|
###########################################
|
2009-01-03 12:54:10 +03:00
|
|
|
acpi.o: acpi.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h pci.h acpi.h
|
2004-12-13 22:10:38 +03:00
|
|
|
biosdev.o: biosdev.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h biosdev.h
|
2004-12-13 22:10:38 +03:00
|
|
|
busmouse.o: busmouse.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h busmouse.h
|
2008-12-30 12:37:15 +03:00
|
|
|
cmos.o: cmos.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h cmos.h virt_timer.h
|
2009-01-03 12:54:10 +03:00
|
|
|
devices.o: devices.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h ../iodev/virt_timer.h ../iodev/slowdown_timer.h
|
2004-12-13 22:10:38 +03:00
|
|
|
dma.o: dma.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h dma.h
|
2004-12-13 22:10:38 +03:00
|
|
|
extfpuirq.o: extfpuirq.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h extfpuirq.h
|
2004-12-13 22:10:38 +03:00
|
|
|
floppy.o: floppy.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h hdimage/hdimage.h floppy.h
|
2004-12-13 22:10:38 +03:00
|
|
|
gameport.o: gameport.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h gameport.h
|
2004-12-13 22:10:38 +03:00
|
|
|
harddrv.o: harddrv.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h harddrv.h hdimage/hdimage.h hdimage/cdrom.h
|
2009-01-03 12:54:10 +03:00
|
|
|
ioapic.o: ioapic.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h ioapic.h
|
2009-01-03 12:54:10 +03:00
|
|
|
iodebug.o: iodebug.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h
|
2004-12-13 22:10:38 +03:00
|
|
|
keyboard.o: keyboard.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h ../gui/keymap.h keyboard.h scancodes.h
|
2004-12-13 22:10:38 +03:00
|
|
|
parallel.o: parallel.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h parallel.h
|
2007-03-25 21:37:59 +04:00
|
|
|
pci2isa.o: pci2isa.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h pci.h pci2isa.h
|
2007-03-25 21:37:59 +04:00
|
|
|
pci.o: pci.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h pci.h
|
2007-03-25 21:37:59 +04:00
|
|
|
pcidev.o: pcidev.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h
|
2007-03-25 21:37:59 +04:00
|
|
|
pci_ide.o: pci_ide.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h pci.h pci_ide.h
|
2004-12-13 22:10:38 +03:00
|
|
|
pic.o: pic.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h pic.h
|
2006-03-07 01:32:03 +03:00
|
|
|
pit82c54.o: pit82c54.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h pit82c54.h
|
2012-01-15 12:50:20 +04:00
|
|
|
pit.o: pit.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h pit.h pit82c54.h virt_timer.h speaker.h
|
2004-12-13 22:10:38 +03:00
|
|
|
scancodes.o: scancodes.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h scancodes.h
|
2004-12-13 22:10:38 +03:00
|
|
|
serial.o: serial.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h serial.h
|
2005-12-10 21:37:35 +03:00
|
|
|
serial_raw.o: serial_raw.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h
|
2007-03-25 21:37:59 +04:00
|
|
|
slowdown_timer.o: slowdown_timer.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../param_names.h \
|
|
|
|
slowdown_timer.h
|
2004-12-13 22:10:38 +03:00
|
|
|
speaker.o: speaker.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2015-02-20 00:31:18 +03:00
|
|
|
../param_names.h speaker.h sound/soundlow.h sound/soundmod.h
|
2004-12-13 22:10:38 +03:00
|
|
|
unmapped.o: unmapped.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h unmapped.h
|
2005-12-10 21:37:35 +03:00
|
|
|
virt_timer.o: virt_timer.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../param_names.h \
|
|
|
|
virt_timer.h
|
2009-01-03 12:54:10 +03:00
|
|
|
acpi.lo: acpi.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h pci.h acpi.h
|
2004-12-13 22:10:38 +03:00
|
|
|
biosdev.lo: biosdev.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h biosdev.h
|
2004-12-13 22:10:38 +03:00
|
|
|
busmouse.lo: busmouse.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h busmouse.h
|
2008-12-30 12:37:15 +03:00
|
|
|
cmos.lo: cmos.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h cmos.h virt_timer.h
|
2009-01-03 12:54:10 +03:00
|
|
|
devices.lo: devices.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h ../iodev/virt_timer.h ../iodev/slowdown_timer.h
|
2004-12-13 22:10:38 +03:00
|
|
|
dma.lo: dma.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h dma.h
|
2004-12-13 22:10:38 +03:00
|
|
|
extfpuirq.lo: extfpuirq.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h extfpuirq.h
|
2004-12-13 22:10:38 +03:00
|
|
|
floppy.lo: floppy.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h hdimage/hdimage.h floppy.h
|
2004-12-13 22:10:38 +03:00
|
|
|
gameport.lo: gameport.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h gameport.h
|
2004-12-13 22:10:38 +03:00
|
|
|
harddrv.lo: harddrv.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h harddrv.h hdimage/hdimage.h hdimage/cdrom.h
|
2009-01-03 12:54:10 +03:00
|
|
|
ioapic.lo: ioapic.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h ioapic.h
|
2009-01-03 12:54:10 +03:00
|
|
|
iodebug.lo: iodebug.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h
|
2004-12-13 22:10:38 +03:00
|
|
|
keyboard.lo: keyboard.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h ../gui/keymap.h keyboard.h scancodes.h
|
2004-12-13 22:10:38 +03:00
|
|
|
parallel.lo: parallel.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h parallel.h
|
2007-03-25 21:37:59 +04:00
|
|
|
pci2isa.lo: pci2isa.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h pci.h pci2isa.h
|
2007-03-25 21:37:59 +04:00
|
|
|
pci.lo: pci.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h pci.h
|
2007-03-25 21:37:59 +04:00
|
|
|
pcidev.lo: pcidev.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h
|
2007-03-25 21:37:59 +04:00
|
|
|
pci_ide.lo: pci_ide.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h pci.h pci_ide.h
|
2004-12-13 22:10:38 +03:00
|
|
|
pic.lo: pic.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h pic.h
|
2006-03-07 01:32:03 +03:00
|
|
|
pit82c54.lo: pit82c54.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h pit82c54.h
|
2012-01-15 12:50:20 +04:00
|
|
|
pit.lo: pit.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h pit.h pit82c54.h virt_timer.h speaker.h
|
2003-03-03 20:39:16 +03:00
|
|
|
scancodes.lo: scancodes.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h scancodes.h
|
2004-12-13 22:10:38 +03:00
|
|
|
serial.lo: serial.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h serial.h
|
2005-12-10 21:37:35 +03:00
|
|
|
serial_raw.lo: serial_raw.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h
|
2007-03-25 21:37:59 +04:00
|
|
|
slowdown_timer.lo: slowdown_timer.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../param_names.h \
|
|
|
|
slowdown_timer.h
|
2004-12-13 22:10:38 +03:00
|
|
|
speaker.lo: speaker.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2015-02-20 00:31:18 +03:00
|
|
|
../param_names.h speaker.h sound/soundlow.h sound/soundmod.h
|
2004-12-13 22:10:38 +03:00
|
|
|
unmapped.lo: unmapped.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
2013-12-17 23:57:40 +04:00
|
|
|
../param_names.h unmapped.h
|
2005-12-10 21:37:35 +03:00
|
|
|
virt_timer.lo: virt_timer.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
2011-10-03 11:23:44 +04:00
|
|
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
|
|
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
|
|
|
../gui/gui.h ../instrument/stubs/instrument.h ../param_names.h \
|
|
|
|
virt_timer.h
|