- moved the sound stuff to the new subdirectory iodev/sound
- TODO #1: update MSVC workspace files - TODO #2: these 'device classes' could be moved to subdirectories, too: - pci (when we have more than one chipset) - display (when we have one more device and vga / cirrus cleaned up)
This commit is contained in:
parent
a1a2ca1f55
commit
c6bd3fb60c
@ -173,13 +173,13 @@ all: @PRIMARY_TARGET@ @PLUGIN_TARGET@ bximage@EXE@ bxcommit@EXE@ @BUILD_DOCBOOK_
|
|||||||
|
|
||||||
@EXTERNAL_DEPENDENCY@
|
@EXTERNAL_DEPENDENCY@
|
||||||
|
|
||||||
bochs@EXE@: @IODEV_LIB_VAR@ @USB_LIB_VAR@ @NETWORK_LIB_VAR@ @DEBUGGER_VAR@ \
|
bochs@EXE@: @IODEV_LIB_VAR@ @USB_LIB_VAR@ @NETWORK_LIB_VAR@ @SOUND_LIB_VAR@ \
|
||||||
cpu/libcpu.a cpu/cpudb/libcpudb.a memory/libmemory.a gui/libgui.a \
|
@DEBUGGER_VAR@ cpu/libcpu.a cpu/cpudb/libcpudb.a memory/libmemory.a \
|
||||||
@DISASM_VAR@ @INSTRUMENT_VAR@ $(BX_OBJS) \
|
gui/libgui.a @DISASM_VAR@ @INSTRUMENT_VAR@ $(BX_OBJS) \
|
||||||
$(SIMX86_OBJS) @FPU_VAR@ @GDBSTUB_VAR@ @PLUGIN_VAR@
|
$(SIMX86_OBJS) @FPU_VAR@ @GDBSTUB_VAR@ @PLUGIN_VAR@
|
||||||
@LINK@ @EXPORT_DYNAMIC@ $(BX_OBJS) $(SIMX86_OBJS) \
|
@LINK@ @EXPORT_DYNAMIC@ $(BX_OBJS) $(SIMX86_OBJS) \
|
||||||
@IODEV_LIB_VAR@ @USB_LIB_VAR@ @NETWORK_LIB_VAR@ @DEBUGGER_VAR@ \
|
@IODEV_LIB_VAR@ @USB_LIB_VAR@ @NETWORK_LIB_VAR@ @SOUND_LIB_VAR@ \
|
||||||
cpu/libcpu.a cpu/cpudb/libcpudb.a \
|
@DEBUGGER_VAR@ cpu/libcpu.a cpu/cpudb/libcpudb.a \
|
||||||
memory/libmemory.a gui/libgui.a \
|
memory/libmemory.a gui/libgui.a \
|
||||||
@DISASM_VAR@ @INSTRUMENT_VAR@ @PLUGIN_VAR@ \
|
@DISASM_VAR@ @INSTRUMENT_VAR@ @PLUGIN_VAR@ \
|
||||||
@GDBSTUB_VAR@ @FPU_VAR@ \
|
@GDBSTUB_VAR@ @FPU_VAR@ \
|
||||||
@ -194,21 +194,21 @@ bochs@EXE@: @IODEV_LIB_VAR@ @USB_LIB_VAR@ @NETWORK_LIB_VAR@ @DEBUGGER_VAR@ \
|
|||||||
# libtool. This creates a .DEF file, and exports file, an import library,
|
# libtool. This creates a .DEF file, and exports file, an import library,
|
||||||
# and then links bochs.exe with the exports file.
|
# and then links bochs.exe with the exports file.
|
||||||
.win32_dll_plugin_target: @IODEV_LIB_VAR@ @USB_LIB_VAR@ @NETWORK_LIB_VAR@ \
|
.win32_dll_plugin_target: @IODEV_LIB_VAR@ @USB_LIB_VAR@ @NETWORK_LIB_VAR@ \
|
||||||
@DEBUGGER_VAR@ cpu/libcpu.a cpu/cpudb/libcpudb.a memory/libmemory.a \
|
@SOUND_LIB_VAR@ @DEBUGGER_VAR@ cpu/libcpu.a cpu/cpudb/libcpudb.a \
|
||||||
gui/libgui.a @DISASM_VAR@ @INSTRUMENT_VAR@ $(BX_OBJS) \
|
memory/libmemory.a gui/libgui.a @DISASM_VAR@ @INSTRUMENT_VAR@ \
|
||||||
$(SIMX86_OBJS) @FPU_VAR@ @GDBSTUB_VAR@ @PLUGIN_VAR@
|
$(BX_OBJS) $(SIMX86_OBJS) @FPU_VAR@ @GDBSTUB_VAR@ @PLUGIN_VAR@
|
||||||
$(DLLTOOL) --export-all-symbols --output-def bochs.def \
|
$(DLLTOOL) --export-all-symbols --output-def bochs.def \
|
||||||
$(BX_OBJS) $(SIMX86_OBJS) \
|
$(BX_OBJS) $(SIMX86_OBJS) \
|
||||||
@IODEV_LIB_VAR@ @USB_LIB_VAR@ @NETWORK_LIB_VAR@ cpu/libcpu.a \
|
@IODEV_LIB_VAR@ @USB_LIB_VAR@ @NETWORK_LIB_VAR@ @SOUND_LIB_VAR@ \
|
||||||
cpu/cpudb/libcpudb.a memory/libmemory.a gui/libgui.a \
|
cpu/libcpu.a cpu/cpudb/libcpudb.a memory/libmemory.a gui/libgui.a \
|
||||||
@DEBUGGER_VAR@ @DISASM_VAR@ @INSTRUMENT_VAR@ @PLUGIN_VAR@ \
|
@DEBUGGER_VAR@ @DISASM_VAR@ @INSTRUMENT_VAR@ @PLUGIN_VAR@ \
|
||||||
@GDBSTUB_VAR@ @FPU_VAR@
|
@GDBSTUB_VAR@ @FPU_VAR@
|
||||||
$(DLLTOOL) --dllname bochs.exe --def bochs.def --output-lib dllexports.a
|
$(DLLTOOL) --dllname bochs.exe --def bochs.def --output-lib dllexports.a
|
||||||
$(DLLTOOL) --dllname bochs.exe --output-exp bochs.exp --def bochs.def
|
$(DLLTOOL) --dllname bochs.exe --output-exp bochs.exp --def bochs.def
|
||||||
$(CXX) -o bochs.exe $(CXXFLAGS) $(LDFLAGS) -export-dynamic \
|
$(CXX) -o bochs.exe $(CXXFLAGS) $(LDFLAGS) -export-dynamic \
|
||||||
$(BX_OBJS) bochs.exp $(SIMX86_OBJS) \
|
$(BX_OBJS) bochs.exp $(SIMX86_OBJS) \
|
||||||
@IODEV_LIB_VAR@ @USB_LIB_VAR@ @NETWORK_LIB_VAR@ cpu/libcpu.a \
|
@IODEV_LIB_VAR@ @USB_LIB_VAR@ @NETWORK_LIB_VAR@ @SOUND_LIB_VAR@ \
|
||||||
cpu/cpudb/libcpudb.a memory/libmemory.a gui/libgui.a \
|
cpu/libcpu.a cpu/cpudb/libcpudb.a memory/libmemory.a gui/libgui.a \
|
||||||
@DEBUGGER_VAR@ @DISASM_VAR@ @INSTRUMENT_VAR@ @PLUGIN_VAR@ \
|
@DEBUGGER_VAR@ @DISASM_VAR@ @INSTRUMENT_VAR@ @PLUGIN_VAR@ \
|
||||||
@GDBSTUB_VAR@ @FPU_VAR@ \
|
@GDBSTUB_VAR@ @FPU_VAR@ \
|
||||||
$(GUI_LINK_OPTS) \
|
$(GUI_LINK_OPTS) \
|
||||||
@ -232,6 +232,9 @@ bochs_plugins:
|
|||||||
cd iodev/network @COMMAND_SEPARATOR@
|
cd iodev/network @COMMAND_SEPARATOR@
|
||||||
$(MAKE) plugins
|
$(MAKE) plugins
|
||||||
@CD_UP_TWO@
|
@CD_UP_TWO@
|
||||||
|
cd iodev/sound @COMMAND_SEPARATOR@
|
||||||
|
$(MAKE) plugins
|
||||||
|
@CD_UP_TWO@
|
||||||
|
|
||||||
bximage@EXE@: misc/bximage.o
|
bximage@EXE@: misc/bximage.o
|
||||||
@LINK_CONSOLE@ $(BXIMAGE_LINK_OPTS) misc/bximage.o
|
@LINK_CONSOLE@ $(BXIMAGE_LINK_OPTS) misc/bximage.o
|
||||||
@ -270,6 +273,11 @@ iodev/network/libnetwork.a::
|
|||||||
$(MAKE) $(MDEFINES) libnetwork.a
|
$(MAKE) $(MDEFINES) libnetwork.a
|
||||||
@CD_UP_TWO@
|
@CD_UP_TWO@
|
||||||
|
|
||||||
|
iodev/sound/libsound.a::
|
||||||
|
cd iodev/sound @COMMAND_SEPARATOR@
|
||||||
|
$(MAKE) $(MDEFINES) libsound.a
|
||||||
|
@CD_UP_TWO@
|
||||||
|
|
||||||
bx_debug/libdebug.a::
|
bx_debug/libdebug.a::
|
||||||
cd bx_debug @COMMAND_SEPARATOR@
|
cd bx_debug @COMMAND_SEPARATOR@
|
||||||
$(MAKE) $(MDEFINES) libdebug.a
|
$(MAKE) $(MDEFINES) libdebug.a
|
||||||
@ -378,6 +386,7 @@ install_libtool_plugins::
|
|||||||
list=`cd iodev && echo *.la`; for i in $$list; do $(LIBTOOL) --mode=install install iodev/$$i $(DESTDIR)$(plugdir); done
|
list=`cd iodev && echo *.la`; for i in $$list; do $(LIBTOOL) --mode=install install iodev/$$i $(DESTDIR)$(plugdir); done
|
||||||
list=`cd iodev/usb && echo *.la`; for i in $$list; do $(LIBTOOL) --mode=install install iodev/usb/$$i $(DESTDIR)$(plugdir); done
|
list=`cd iodev/usb && echo *.la`; for i in $$list; do $(LIBTOOL) --mode=install install iodev/usb/$$i $(DESTDIR)$(plugdir); done
|
||||||
list=`cd iodev/network && echo *.la`; for i in $$list; do $(LIBTOOL) --mode=install install iodev/network/$$i $(DESTDIR)$(plugdir); done
|
list=`cd iodev/network && echo *.la`; for i in $$list; do $(LIBTOOL) --mode=install install iodev/network/$$i $(DESTDIR)$(plugdir); done
|
||||||
|
list=`cd iodev/sound && echo *.la`; for i in $$list; do $(LIBTOOL) --mode=install install iodev/sound/$$i $(DESTDIR)$(plugdir); done
|
||||||
$(LIBTOOL) --finish $(DESTDIR)$(plugdir)
|
$(LIBTOOL) --finish $(DESTDIR)$(plugdir)
|
||||||
|
|
||||||
install_dll_plugins::
|
install_dll_plugins::
|
||||||
@ -386,6 +395,7 @@ install_dll_plugins::
|
|||||||
list=`cd iodev && echo *.dll`; for i in $$list; do cp iodev/$$i $(DESTDIR)$(plugdir); done
|
list=`cd iodev && echo *.dll`; for i in $$list; do cp iodev/$$i $(DESTDIR)$(plugdir); done
|
||||||
list=`cd iodev/usb && echo *.dll`; for i in $$list; do cp iodev/usb/$$i $(DESTDIR)$(plugdir); done
|
list=`cd iodev/usb && echo *.dll`; for i in $$list; do cp iodev/usb/$$i $(DESTDIR)$(plugdir); done
|
||||||
list=`cd iodev/network && echo *.dll`; for i in $$list; do cp iodev/network/$$i $(DESTDIR)$(plugdir); done
|
list=`cd iodev/network && echo *.dll`; for i in $$list; do cp iodev/network/$$i $(DESTDIR)$(plugdir); done
|
||||||
|
list=`cd iodev/sound && echo *.dll`; for i in $$list; do cp iodev/sound/$$i $(DESTDIR)$(plugdir); done
|
||||||
|
|
||||||
install_share::
|
install_share::
|
||||||
for i in $(DESTDIR)$(sharedir); do mkdir -p $$i && test -d $$i && test -w $$i; done
|
for i in $(DESTDIR)$(sharedir); do mkdir -p $$i && test -d $$i && test -w $$i; done
|
||||||
@ -507,6 +517,9 @@ all-clean: clean
|
|||||||
cd iodev/network @COMMAND_SEPARATOR@
|
cd iodev/network @COMMAND_SEPARATOR@
|
||||||
$(MAKE) clean
|
$(MAKE) clean
|
||||||
@CD_UP_TWO@
|
@CD_UP_TWO@
|
||||||
|
cd iodev/sound @COMMAND_SEPARATOR@
|
||||||
|
$(MAKE) clean
|
||||||
|
@CD_UP_TWO@
|
||||||
cd bx_debug @COMMAND_SEPARATOR@
|
cd bx_debug @COMMAND_SEPARATOR@
|
||||||
$(MAKE) clean
|
$(MAKE) clean
|
||||||
@CD_UP_ONE@
|
@CD_UP_ONE@
|
||||||
|
@ -1830,15 +1830,18 @@ IODEV_LIB_VAR='iodev/libiodev.a'
|
|||||||
if test "$bx_plugins" = 0; then
|
if test "$bx_plugins" = 0; then
|
||||||
USB_LIB_VAR='iodev/usb/libusb.a'
|
USB_LIB_VAR='iodev/usb/libusb.a'
|
||||||
NETWORK_LIB_VAR='iodev/network/libnetwork.a'
|
NETWORK_LIB_VAR='iodev/network/libnetwork.a'
|
||||||
|
SOUND_LIB_VAR='iodev/sound/libsound.a'
|
||||||
else
|
else
|
||||||
USB_LIB_VAR=''
|
USB_LIB_VAR=''
|
||||||
NETWORK_LIB_VAR=''
|
NETWORK_LIB_VAR=''
|
||||||
|
SOUND_LIB_VAR=''
|
||||||
fi
|
fi
|
||||||
NONINLINE_VAR='$(NONINLINE_OBJS)'
|
NONINLINE_VAR='$(NONINLINE_OBJS)'
|
||||||
|
|
||||||
AC_SUBST(IODEV_LIB_VAR)
|
AC_SUBST(IODEV_LIB_VAR)
|
||||||
AC_SUBST(USB_LIB_VAR)
|
AC_SUBST(USB_LIB_VAR)
|
||||||
AC_SUBST(NETWORK_LIB_VAR)
|
AC_SUBST(NETWORK_LIB_VAR)
|
||||||
|
AC_SUBST(SOUND_LIB_VAR)
|
||||||
AC_SUBST(EXTRA_BX_OBJS)
|
AC_SUBST(EXTRA_BX_OBJS)
|
||||||
AC_SUBST(NONINLINE_VAR)
|
AC_SUBST(NONINLINE_VAR)
|
||||||
AC_SUBST(INLINE_VAR)
|
AC_SUBST(INLINE_VAR)
|
||||||
@ -2761,10 +2764,10 @@ AC_PATH_PROG(GZIP, gzip)
|
|||||||
AC_PATH_PROG(TAR, tar)
|
AC_PATH_PROG(TAR, tar)
|
||||||
|
|
||||||
AC_OUTPUT(Makefile iodev/Makefile iodev/usb/Makefile iodev/network/Makefile \
|
AC_OUTPUT(Makefile iodev/Makefile iodev/usb/Makefile iodev/network/Makefile \
|
||||||
bx_debug/Makefile bios/Makefile cpu/Makefile cpu/cpudb/Makefile \
|
iodev/sound/Makefile bx_debug/Makefile bios/Makefile cpu/Makefile \
|
||||||
memory/Makefile gui/Makefile disasm/Makefile ${INSTRUMENT_DIR}/Makefile \
|
cpu/cpudb/Makefile memory/Makefile gui/Makefile disasm/Makefile \
|
||||||
misc/Makefile fpu/Makefile doc/docbook/Makefile \
|
${INSTRUMENT_DIR}/Makefile misc/Makefile fpu/Makefile \
|
||||||
build/linux/bochs-dlx \
|
doc/docbook/Makefile build/linux/bochs-dlx \
|
||||||
bxversion.h bxversion.rc build/macosx/Info.plist \
|
bxversion.h bxversion.rc build/macosx/Info.plist \
|
||||||
build/win32/nsis/Makefile build/win32/nsis/bochs.nsi \
|
build/win32/nsis/Makefile build/win32/nsis/bochs.nsi \
|
||||||
host/linux/pcidev/Makefile)
|
host/linux/pcidev/Makefile)
|
||||||
|
@ -50,7 +50,6 @@ LIBTOOL=@LIBTOOL@
|
|||||||
WIN32_DLL_IMPORT_LIBRARY=../dllexports.a
|
WIN32_DLL_IMPORT_LIBRARY=../dllexports.a
|
||||||
|
|
||||||
CDROM_OBJS = @CDROM_OBJS@
|
CDROM_OBJS = @CDROM_OBJS@
|
||||||
SOUNDLOW_OBJS = @SOUNDLOW_OBJS@
|
|
||||||
|
|
||||||
BX_INCDIRS = -I.. -I$(srcdir)/.. -I../@INSTRUMENT_DIR@ -I$(srcdir)/../@INSTRUMENT_DIR@
|
BX_INCDIRS = -I.. -I$(srcdir)/.. -I../@INSTRUMENT_DIR@ -I$(srcdir)/../@INSTRUMENT_DIR@
|
||||||
LOCAL_CXXFLAGS = $(MCH_CFLAGS)
|
LOCAL_CXXFLAGS = $(MCH_CFLAGS)
|
||||||
@ -82,8 +81,6 @@ OBJS_THAT_CAN_BE_PLUGINS = \
|
|||||||
busmouse.o \
|
busmouse.o \
|
||||||
ioapic.o \
|
ioapic.o \
|
||||||
@PCI_OBJ@ \
|
@PCI_OBJ@ \
|
||||||
soundmod.o \
|
|
||||||
@SOUNDCARD_OBJS@ \
|
|
||||||
@GAME_OBJS@ \
|
@GAME_OBJS@ \
|
||||||
@IODEBUG_OBJS@
|
@IODEBUG_OBJS@
|
||||||
|
|
||||||
@ -95,12 +92,10 @@ OBJS_THAT_SUPPORT_OTHER_PLUGINS = \
|
|||||||
vmware3.o \
|
vmware3.o \
|
||||||
vmware4.o \
|
vmware4.o \
|
||||||
vvfat.o \
|
vvfat.o \
|
||||||
$(CDROM_OBJS) \
|
$(CDROM_OBJS)
|
||||||
$(SOUNDLOW_OBJS)
|
|
||||||
|
|
||||||
NONPLUGIN_OBJS = @IODEV_NON_PLUGIN_OBJS@
|
NONPLUGIN_OBJS = @IODEV_NON_PLUGIN_OBJS@
|
||||||
PLUGIN_OBJS = @IODEV_PLUGIN_OBJS@
|
PLUGIN_OBJS = @IODEV_PLUGIN_OBJS@
|
||||||
SOUND_LINK_OPTS = @SOUND_LINK_OPTS@
|
|
||||||
|
|
||||||
all: libiodev.a
|
all: libiodev.a
|
||||||
|
|
||||||
@ -138,9 +133,6 @@ libbx_keyboard.la: keyboard.lo scancodes.lo
|
|||||||
libbx_pit_wrap.la: pit82c54.lo pit_wrap.lo
|
libbx_pit_wrap.la: pit82c54.lo pit_wrap.lo
|
||||||
$(LIBTOOL) --mode=link $(CXX) -module pit82c54.lo pit_wrap.lo -o libbx_pit.la -rpath $(PLUGIN_PATH)
|
$(LIBTOOL) --mode=link $(CXX) -module pit82c54.lo pit_wrap.lo -o libbx_pit.la -rpath $(PLUGIN_PATH)
|
||||||
|
|
||||||
libbx_soundmod.la: soundmod.lo $(SOUNDLOW_OBJS:.o=.lo)
|
|
||||||
$(LIBTOOL) --mode=link $(CXX) -module soundmod.lo $(SOUNDLOW_OBJS:.o=.lo) -o libbx_soundmod.la -rpath $(PLUGIN_PATH) $(SOUND_LINK_OPTS)
|
|
||||||
|
|
||||||
libbx_serial.la: serial.lo serial_raw.lo
|
libbx_serial.la: serial.lo serial_raw.lo
|
||||||
$(LIBTOOL) --mode=link $(CXX) -module serial.lo serial_raw.lo -o libbx_serial.la -rpath $(PLUGIN_PATH)
|
$(LIBTOOL) --mode=link $(CXX) -module serial.lo serial_raw.lo -o libbx_serial.la -rpath $(PLUGIN_PATH)
|
||||||
|
|
||||||
@ -161,9 +153,6 @@ bx_keyboard.dll: keyboard.o scancodes.o
|
|||||||
bx_pit_wrap.dll: pit82c54.o pit_wrap.o
|
bx_pit_wrap.dll: pit82c54.o pit_wrap.o
|
||||||
$(CXX) $(CXXFLAGS) -shared -o bx_pit.dll pit82c54.o pit_wrap.o $(WIN32_DLL_IMPORT_LIBRARY)
|
$(CXX) $(CXXFLAGS) -shared -o bx_pit.dll pit82c54.o pit_wrap.o $(WIN32_DLL_IMPORT_LIBRARY)
|
||||||
|
|
||||||
bx_soundmod.dll: soundmod.o $(SOUNDLOW_OBJS)
|
|
||||||
$(CXX) $(CXXFLAGS) -shared -o bx_soundmod.dll soundmod.o $(SOUNDLOW_OBJS) $(WIN32_DLL_IMPORT_LIBRARY) -lwinmm
|
|
||||||
|
|
||||||
bx_gameport.dll: gameport.o
|
bx_gameport.dll: gameport.o
|
||||||
$(CXX) $(CXXFLAGS) -shared -o bx_gameport.dll gameport.o $(WIN32_DLL_IMPORT_LIBRARY) -lwinmm
|
$(CXX) $(CXXFLAGS) -shared -o bx_gameport.dll gameport.o $(WIN32_DLL_IMPORT_LIBRARY) -lwinmm
|
||||||
|
|
||||||
@ -242,12 +231,6 @@ dma.o: dma.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
|||||||
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
||||||
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
||||||
../ltdl.h ../param_names.h dma.h
|
../ltdl.h ../param_names.h dma.h
|
||||||
es1370.o: es1370.@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 pci.h es1370.h soundmod.h soundlnx.h \
|
|
||||||
soundwin.h soundosx.h
|
|
||||||
extfpuirq.o: extfpuirq.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
extfpuirq.o: extfpuirq.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
||||||
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
||||||
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
||||||
@ -333,12 +316,6 @@ pit_wrap.o: pit_wrap.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
|||||||
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
||||||
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
||||||
../ltdl.h ../param_names.h pit_wrap.h pit82c54.h virt_timer.h speaker.h
|
../ltdl.h ../param_names.h pit_wrap.h pit82c54.h virt_timer.h speaker.h
|
||||||
sb16.o: sb16.@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 sb16.h soundmod.h soundlnx.h soundwin.h \
|
|
||||||
soundosx.h
|
|
||||||
scancodes.o: scancodes.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
scancodes.o: scancodes.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
||||||
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
||||||
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
||||||
@ -358,26 +335,6 @@ slowdown_timer.o: slowdown_timer.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h
|
|||||||
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
||||||
../gui/gui.h ../instrument/stubs/instrument.h ../param_names.h \
|
../gui/gui.h ../instrument/stubs/instrument.h ../param_names.h \
|
||||||
slowdown_timer.h
|
slowdown_timer.h
|
||||||
soundlnx.o: soundlnx.@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 soundmod.h soundlnx.h
|
|
||||||
soundmod.o: soundmod.@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 soundmod.h soundlnx.h soundosx.h soundwin.h
|
|
||||||
soundosx.o: soundosx.@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 soundmod.h soundosx.h
|
|
||||||
soundwin.o: soundwin.@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 soundmod.h soundwin.h
|
|
||||||
speaker.o: speaker.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
speaker.o: speaker.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
||||||
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
||||||
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
||||||
@ -469,12 +426,6 @@ dma.lo: dma.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
|||||||
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
||||||
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
||||||
../ltdl.h ../param_names.h dma.h
|
../ltdl.h ../param_names.h dma.h
|
||||||
es1370.lo: es1370.@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 pci.h es1370.h soundmod.h soundlnx.h \
|
|
||||||
soundwin.h soundosx.h
|
|
||||||
extfpuirq.lo: extfpuirq.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
extfpuirq.lo: extfpuirq.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
||||||
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
||||||
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
||||||
@ -560,12 +511,6 @@ pit_wrap.lo: pit_wrap.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
|||||||
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
||||||
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
../gui/gui.h ../instrument/stubs/instrument.h ../plugin.h ../extplugin.h \
|
||||||
../ltdl.h ../param_names.h pit_wrap.h pit82c54.h virt_timer.h speaker.h
|
../ltdl.h ../param_names.h pit_wrap.h pit82c54.h virt_timer.h speaker.h
|
||||||
sb16.lo: sb16.@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 sb16.h soundmod.h soundlnx.h soundwin.h \
|
|
||||||
soundosx.h
|
|
||||||
scancodes.lo: scancodes.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
scancodes.lo: scancodes.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
||||||
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
||||||
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
||||||
@ -585,26 +530,6 @@ slowdown_timer.lo: slowdown_timer.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h
|
|||||||
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
||||||
../gui/gui.h ../instrument/stubs/instrument.h ../param_names.h \
|
../gui/gui.h ../instrument/stubs/instrument.h ../param_names.h \
|
||||||
slowdown_timer.h
|
slowdown_timer.h
|
||||||
soundlnx.lo: soundlnx.@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 soundmod.h soundlnx.h
|
|
||||||
soundmod.lo: soundmod.@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 soundmod.h soundlnx.h soundosx.h soundwin.h
|
|
||||||
soundosx.lo: soundosx.@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 soundmod.h soundosx.h
|
|
||||||
soundwin.lo: soundwin.@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 soundmod.h soundwin.h
|
|
||||||
speaker.lo: speaker.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
speaker.lo: speaker.@CPP_SUFFIX@ iodev.h ../bochs.h ../config.h ../osdep.h \
|
||||||
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
|
||||||
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
../cpudb.h ../gui/paramtree.h ../memory/memory.h ../pc_system.h \
|
||||||
|
191
bochs/iodev/sound/Makefile.in
Normal file
191
bochs/iodev/sound/Makefile.in
Normal file
@ -0,0 +1,191 @@
|
|||||||
|
# Copyright (C) 2012 The Bochs Project
|
||||||
|
#
|
||||||
|
# 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
|
||||||
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
|
# Makefile for the iodev/sound component of bochs
|
||||||
|
|
||||||
|
|
||||||
|
@SUFFIX_LINE@
|
||||||
|
|
||||||
|
prefix = @prefix@
|
||||||
|
exec_prefix = @exec_prefix@
|
||||||
|
srcdir = @srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
|
bindir = @bindir@
|
||||||
|
libdir = @libdir@
|
||||||
|
datarootdir = @datarootdir@
|
||||||
|
mandir = @mandir@
|
||||||
|
man1dir = $(mandir)/man1
|
||||||
|
man5dir = $(mandir)/man5
|
||||||
|
docdir = $(datarootdir)/doc/bochs
|
||||||
|
sharedir = $(datarootdir)/bochs
|
||||||
|
top_builddir = ..
|
||||||
|
top_srcdir = @top_srcdir@
|
||||||
|
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
@SET_MAKE@
|
||||||
|
|
||||||
|
CXX = @CXX@
|
||||||
|
CXXFLAGS = $(BX_INCDIRS) @CXXFLAGS@ @GUI_CXXFLAGS@
|
||||||
|
|
||||||
|
LDFLAGS = @LDFLAGS@
|
||||||
|
LIBS = @LIBS@
|
||||||
|
RANLIB = @RANLIB@
|
||||||
|
PLUGIN_PATH=@libdir@
|
||||||
|
top_builddir = ../..
|
||||||
|
LIBTOOL=@LIBTOOL@
|
||||||
|
WIN32_DLL_IMPORT_LIBRARY=../../dllexports.a
|
||||||
|
|
||||||
|
SOUNDLOW_OBJS = @SOUNDLOW_OBJS@
|
||||||
|
|
||||||
|
BX_INCDIRS = -I.. -I../.. -I$(srcdir)/.. -I../../@INSTRUMENT_DIR@ -I$(srcdir)/../../@INSTRUMENT_DIR@
|
||||||
|
LOCAL_CXXFLAGS = $(MCH_CFLAGS)
|
||||||
|
|
||||||
|
OBJS_THAT_CAN_BE_PLUGINS = \
|
||||||
|
@SOUNDCARD_OBJS@ \
|
||||||
|
soundmod.o
|
||||||
|
|
||||||
|
OBJS_THAT_SUPPORT_OTHER_PLUGINS = \
|
||||||
|
$(SOUNDLOW_OBJS)
|
||||||
|
|
||||||
|
NONPLUGIN_OBJS = @IODEV_EXT_NON_PLUGIN_OBJS@
|
||||||
|
PLUGIN_OBJS = @IODEV_EXT_PLUGIN_OBJS@
|
||||||
|
SOUND_LINK_OPTS = @SOUND_LINK_OPTS@
|
||||||
|
|
||||||
|
all: libsound.a
|
||||||
|
|
||||||
|
plugins: $(PLUGIN_OBJS:@PLUGIN_LIBNAME_TRANSFORMATION@)
|
||||||
|
|
||||||
|
libsound.a: $(NONPLUGIN_OBJS)
|
||||||
|
@RMCOMMAND@ libsound.a
|
||||||
|
@MAKELIB@ $(NONPLUGIN_OBJS)
|
||||||
|
@RANLIB@ libsound.a
|
||||||
|
|
||||||
|
# standard compile rule for C++ files
|
||||||
|
.@CPP_SUFFIX@.o:
|
||||||
|
$(CXX) @DASH@c $(CXXFLAGS) $(LOCAL_CXXFLAGS) @CXXFP@$< @OFP@$@
|
||||||
|
|
||||||
|
##### building plugins with libtool
|
||||||
|
%.lo: %.@CPP_SUFFIX@
|
||||||
|
$(LIBTOOL) --mode=compile $(CXX) -c $(CXXFLAGS) $(LOCAL_CXXFLAGS) $< -o $@
|
||||||
|
|
||||||
|
libbx_%.la: %.lo
|
||||||
|
$(LIBTOOL) --mode=link $(CXX) -module $< -o $@ -rpath $(PLUGIN_PATH)
|
||||||
|
|
||||||
|
# special link rules for plugins that require more than one object file
|
||||||
|
libbx_soundmod.la: soundmod.lo $(SOUNDLOW_OBJS:.o=.lo)
|
||||||
|
$(LIBTOOL) --mode=link $(CXX) -module soundmod.lo $(SOUNDLOW_OBJS:.o=.lo) -o libbx_soundmod.la -rpath $(PLUGIN_PATH) $(SOUND_LINK_OPTS)
|
||||||
|
|
||||||
|
#### building DLLs for win32 (tested on cygwin only)
|
||||||
|
bx_%.dll: %.o
|
||||||
|
$(CXX) $(CXXFLAGS) -shared -o $@ $< $(WIN32_DLL_IMPORT_LIBRARY)
|
||||||
|
|
||||||
|
# special link rules for plugins that require more than one object file
|
||||||
|
bx_soundmod.dll: soundmod.o $(SOUNDLOW_OBJS)
|
||||||
|
$(CXX) $(CXXFLAGS) -shared -o bx_soundmod.dll soundmod.o $(SOUNDLOW_OBJS) $(WIN32_DLL_IMPORT_LIBRARY) -lwinmm
|
||||||
|
|
||||||
|
##### end DLL section
|
||||||
|
|
||||||
|
clean:
|
||||||
|
@RMCOMMAND@ -rf .libs *.lo *.o *.la *.a *.dll
|
||||||
|
|
||||||
|
dist-clean: clean
|
||||||
|
@RMCOMMAND@ Makefile
|
||||||
|
|
||||||
|
###########################################
|
||||||
|
# dependencies generated by
|
||||||
|
# gcc -MM -I.. -I../.. -I../../instrument/stubs *.cc | sed -e 's/\.cc/.@CPP_SUFFIX@/g'
|
||||||
|
# gcc -MM -I.. -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.
|
||||||
|
###########################################
|
||||||
|
es1370.o: es1370.@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 \
|
||||||
|
../../param_names.h ../pci.h es1370.h soundmod.h soundlnx.h soundwin.h \
|
||||||
|
soundosx.h
|
||||||
|
sb16.o: sb16.@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 \
|
||||||
|
../../param_names.h sb16.h soundmod.h soundlnx.h soundwin.h soundosx.h
|
||||||
|
soundlnx.o: soundlnx.@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 \
|
||||||
|
../../param_names.h soundmod.h soundlnx.h
|
||||||
|
soundmod.o: soundmod.@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 \
|
||||||
|
../../param_names.h soundmod.h soundlnx.h soundosx.h soundwin.h
|
||||||
|
soundosx.o: soundosx.@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 \
|
||||||
|
../../param_names.h soundmod.h soundosx.h
|
||||||
|
soundwin.o: soundwin.@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 \
|
||||||
|
../../param_names.h soundmod.h soundwin.h
|
||||||
|
es1370.lo: es1370.@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 \
|
||||||
|
../../param_names.h ../pci.h es1370.h soundmod.h soundlnx.h soundwin.h \
|
||||||
|
soundosx.h
|
||||||
|
sb16.lo: sb16.@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 \
|
||||||
|
../../param_names.h sb16.h soundmod.h soundlnx.h soundwin.h soundosx.h
|
||||||
|
soundlnx.lo: soundlnx.@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 \
|
||||||
|
../../param_names.h soundmod.h soundlnx.h
|
||||||
|
soundmod.lo: soundmod.@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 \
|
||||||
|
../../param_names.h soundmod.h soundlnx.h soundosx.h soundwin.h
|
||||||
|
soundosx.lo: soundosx.@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 \
|
||||||
|
../../param_names.h soundmod.h soundosx.h
|
||||||
|
soundwin.lo: soundwin.@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 \
|
||||||
|
../../param_names.h soundmod.h soundwin.h
|
Loading…
Reference in New Issue
Block a user