2012-01-14 21:03:00 +04:00
|
|
|
# Copyright (C) 2001-2012 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@
|
|
|
|
WIN32_DLL_IMPORT_LIBRARY=../dllexports.a
|
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)
|
|
|
|
|
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 \
|
2002-10-26 17:14:11 +04:00
|
|
|
vga.o \
|
2012-01-25 01:58:24 +04:00
|
|
|
svga_cirrus.o \
|
2002-10-25 01:07:56 +04:00
|
|
|
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 \
|
2004-12-11 11:35:33 +03:00
|
|
|
busmouse.o \
|
2009-11-20 17:58:48 +03:00
|
|
|
ioapic.o \
|
2002-11-13 21:39:41 +03:00
|
|
|
@PCI_OBJ@ \
|
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 \
|
2004-01-18 04:30:14 +03:00
|
|
|
serial_raw.o \
|
2012-08-05 22:13:38 +04:00
|
|
|
vgacore.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
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
plugins: $(PLUGIN_OBJS:@PLUGIN_LIBNAME_TRANSFORMATION@)
|
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)
|
2001-04-10 05:04:59 +04:00
|
|
|
@RANLIB@ libiodev.a
|
|
|
|
|
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
|
|
|
|
2012-01-25 01:58:24 +04:00
|
|
|
libbx_vga.la: vga.lo vgacore.lo
|
2012-07-14 11:01:43 +04:00
|
|
|
$(LIBTOOL) --mode=link --tag CXX $(CXX) -module vga.lo vgacore.lo -o libbx_vga.la -rpath $(PLUGIN_PATH)
|
2012-01-25 01:58:24 +04:00
|
|
|
|
|
|
|
libbx_svga_cirrus.la: svga_cirrus.lo vgacore.lo
|
2012-07-14 11:01:43 +04:00
|
|
|
$(LIBTOOL) --mode=link --tag CXX $(CXX) -module svga_cirrus.lo vgacore.lo -o libbx_svga_cirrus.la -rpath $(PLUGIN_PATH)
|
2004-08-16 12:07:23 +04:00
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
#### building DLLs for win32 (tested on cygwin only)
|
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)
|
|
|
|
|
|
|
|
# special link rules for plugins that require more than one object file
|
2002-11-14 21:45:49 +03:00
|
|
|
bx_keyboard.dll: keyboard.o scancodes.o
|
|
|
|
$(CXX) $(CXXFLAGS) -shared -o bx_keyboard.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
|
|
|
|
$(CXX) $(CXXFLAGS) -shared -o bx_pit.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
|
|
|
|
$(CXX) $(CXXFLAGS) -shared -o bx_gameport.dll gameport.o $(WIN32_DLL_IMPORT_LIBRARY) -lwinmm
|
2004-01-18 04:30:14 +03:00
|
|
|
|
|
|
|
bx_serial.dll: serial.o serial_raw.o
|
2005-07-30 19:04:26 +04:00
|
|
|
$(CXX) $(CXXFLAGS) -shared -o bx_serial.dll serial.o serial_raw.o $(WIN32_DLL_IMPORT_LIBRARY) -lwsock32
|
2004-01-18 04:30:14 +03:00
|
|
|
|
2012-01-25 01:58:24 +04:00
|
|
|
bx_vga.dll: vga.o vgacore.o
|
|
|
|
$(CXX) $(CXXFLAGS) -shared -o bx_vga.dll vga.o vgacore.o $(WIN32_DLL_IMPORT_LIBRARY)
|
|
|
|
|
|
|
|
bx_svga_cirrus.dll: svga_cirrus.o vgacore.o
|
|
|
|
$(CXX) $(CXXFLAGS) -shared -o bx_svga_cirrus.dll svga_cirrus.o vgacore.o $(WIN32_DLL_IMPORT_LIBRARY)
|
2004-08-16 12:07:23 +04:00
|
|
|
|
2002-10-25 01:07:56 +04:00
|
|
|
##### end DLL section
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
clean:
|
2002-10-25 01:07:56 +04:00
|
|
|
@RMCOMMAND@ -rf .libs *.lo *.o *.la *.a *.dll
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
dist-clean: clean
|
|
|
|
@RMCOMMAND@ Makefile
|
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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
2012-05-28 00:11:37 +04:00
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
2012-08-05 22:13:38 +04:00
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
2012-08-05 22:13:38 +04:00
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
2012-01-15 12:50:20 +04:00
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
2012-05-28 00:11:37 +04:00
|
|
|
../ltdl.h ../param_names.h speaker.h sound/soundmod.h
|
2004-12-13 22:10:38 +03:00
|
|
|
svga_cirrus.o: svga_cirrus.@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 \
|
2012-01-25 01:58:24 +04:00
|
|
|
../ltdl.h ../param_names.h vgacore.h svga_cirrus.h virt_timer.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 \
|
|
|
|
../ltdl.h ../param_names.h unmapped.h
|
2004-12-13 22:10:38 +03:00
|
|
|
vga.o: vga.@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 \
|
2012-01-25 01:58:24 +04:00
|
|
|
../ltdl.h ../param_names.h vgacore.h vga.h virt_timer.h
|
|
|
|
vgacore.o: vgacore.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
|
|
|
../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 \
|
|
|
|
../ltdl.h ../param_names.h vgacore.h virt_timer.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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
2012-05-28 00:11:37 +04:00
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
2012-08-05 22:13:38 +04:00
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
2012-08-05 22:13:38 +04:00
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
2012-01-15 12:50:20 +04:00
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
|
|
|
../ltdl.h ../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 \
|
2012-05-28 00:11:37 +04:00
|
|
|
../ltdl.h ../param_names.h speaker.h sound/soundmod.h
|
2004-12-13 22:10:38 +03:00
|
|
|
svga_cirrus.lo: svga_cirrus.@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 \
|
2012-01-25 01:58:24 +04:00
|
|
|
../ltdl.h ../param_names.h vgacore.h svga_cirrus.h virt_timer.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 \
|
|
|
|
../ltdl.h ../param_names.h unmapped.h
|
2004-12-13 22:10:38 +03:00
|
|
|
vga.lo: vga.@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 \
|
2012-01-25 01:58:24 +04:00
|
|
|
../ltdl.h ../param_names.h vgacore.h vga.h virt_timer.h
|
|
|
|
vgacore.lo: vgacore.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
|
|
|
../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 \
|
|
|
|
../ltdl.h ../param_names.h vgacore.h virt_timer.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
|