diff options
| author | Max Horn | 2009-02-15 08:11:58 +0000 |
|---|---|---|
| committer | Max Horn | 2009-02-15 08:11:58 +0000 |
| commit | 75f4c44fd0644e10ceb556b2fbeaa7737d521a85 (patch) | |
| tree | f7f4da025114c4fd6e03a20ee39e163e8310e566 /engines/sci/sfx | |
| parent | 79f7b51c1630b77d95bcf6e46f06cfd85f8e5b3d (diff) | |
| download | scummvm-rg350-75f4c44fd0644e10ceb556b2fbeaa7737d521a85.tar.gz scummvm-rg350-75f4c44fd0644e10ceb556b2fbeaa7737d521a85.tar.bz2 scummvm-rg350-75f4c44fd0644e10ceb556b2fbeaa7737d521a85.zip | |
Removing various unused files (backups remain in vendor/sci/, of course)
svn-id: r38197
Diffstat (limited to 'engines/sci/sfx')
| -rw-r--r-- | engines/sci/sfx/Makefile.am | 27 | ||||
| -rw-r--r-- | engines/sci/sfx/device/Makefile.am | 3 | ||||
| -rw-r--r-- | engines/sci/sfx/mixer/Makefile.am | 6 | ||||
| -rw-r--r-- | engines/sci/sfx/pcm_device/Makefile.am | 7 | ||||
| -rw-r--r-- | engines/sci/sfx/player/Makefile.am | 3 | ||||
| -rw-r--r-- | engines/sci/sfx/seq/Makefile.am | 5 | ||||
| -rw-r--r-- | engines/sci/sfx/softseq/Makefile.am | 5 | ||||
| -rw-r--r-- | engines/sci/sfx/softseq/mt32/Makefile.am | 5 | ||||
| -rw-r--r-- | engines/sci/sfx/timer/Makefile.am | 4 |
9 files changed, 0 insertions, 65 deletions
diff --git a/engines/sci/sfx/Makefile.am b/engines/sci/sfx/Makefile.am deleted file mode 100644 index b085a7c917..0000000000 --- a/engines/sci/sfx/Makefile.am +++ /dev/null @@ -1,27 +0,0 @@ -SUBDIRS = seq timer player device mixer pcm_device softseq -INCLUDES = -I$(top_srcdir)/src/include @EXTRA_INCLUDES@ -EXTRA_DIST = timetest.c adlib.h device.h mixer.h sequencer.h softseq.h -noinst_LIBRARIES = libscisound.a libscisoundlib.a -libscisound_a_SOURCES = iterator.c songlib.c core.c pcm-iterator.c -libscisoundlib_a_SOURCES = time.c adlib.c - -bin_PROGRAMS = test-iterator -test_iterator_SOURCE = test-iterator.c -test_iterator_LDFLAGS = @SCIV_LDFLAGS@ -LDADD = \ - libscisound.a \ - player/libsciplayer.a \ - seq/libsciseq.a \ - timer/libscitimer.a \ - pcm_device/libscipcm.a \ - mixer/libscimixer.a \ - softseq/libscisoftseq.a \ - libscisoundlib.a \ - device/libscisounddevice.a \ - ../scicore/libscicore.a \ - @LIB_M@ - - -TESTS = test-iterator - - diff --git a/engines/sci/sfx/device/Makefile.am b/engines/sci/sfx/device/Makefile.am deleted file mode 100644 index 4a4f023251..0000000000 --- a/engines/sci/sfx/device/Makefile.am +++ /dev/null @@ -1,3 +0,0 @@ -noinst_LIBRARIES = libscisounddevice.a -INCLUDES = -I$(top_srcdir)/src/include @EXTRA_INCLUDES@ -libscisounddevice_a_SOURCES = devices.c alsa-midi.c unixraw-midi.c camd-midi.c diff --git a/engines/sci/sfx/mixer/Makefile.am b/engines/sci/sfx/mixer/Makefile.am deleted file mode 100644 index 684d40a4ba..0000000000 --- a/engines/sci/sfx/mixer/Makefile.am +++ /dev/null @@ -1,6 +0,0 @@ -EXTRA_DIST = dc.c -noinst_LIBRARIES = libscimixer.a -INCLUDES = -I$(top_srcdir)/src/include @EXTRA_INCLUDES@ -libscimixer_a_SOURCES = mixers.c soft.c -test_LDADD = libscimixer.a ../../scicore/libscicore.a -check_PROGRAMS = test diff --git a/engines/sci/sfx/pcm_device/Makefile.am b/engines/sci/sfx/pcm_device/Makefile.am deleted file mode 100644 index b13a3aab0b..0000000000 --- a/engines/sci/sfx/pcm_device/Makefile.am +++ /dev/null @@ -1,7 +0,0 @@ -noinst_LIBRARIES = libscipcm.a -INCLUDES = -I$(top_srcdir)/src/include @EXTRA_INCLUDES@ -AM_CFLAGS = $(SDL_CFLAGS) -EXTRA_DIST = audiobuf.h -libscipcm_a_SOURCES = audiobuf.c pcm_devices.c sdl.c alsa.c -audbuf_test_LDADD = libscipcm.a ../../scicore/libscicore.a -check_PROGRAMS = audbuf_test diff --git a/engines/sci/sfx/player/Makefile.am b/engines/sci/sfx/player/Makefile.am deleted file mode 100644 index 34ae8e8427..0000000000 --- a/engines/sci/sfx/player/Makefile.am +++ /dev/null @@ -1,3 +0,0 @@ -noinst_LIBRARIES = libsciplayer.a -INCLUDES = -I$(top_srcdir)/src/include @EXTRA_INCLUDES@ -libsciplayer_a_SOURCES = players.c realtime.c polled.c diff --git a/engines/sci/sfx/seq/Makefile.am b/engines/sci/sfx/seq/Makefile.am deleted file mode 100644 index 74fb4fda3f..0000000000 --- a/engines/sci/sfx/seq/Makefile.am +++ /dev/null @@ -1,5 +0,0 @@ -noinst_LIBRARIES = libsciseq.a -INCLUDES = -I$(top_srcdir)/src/include @EXTRA_INCLUDES@ -EXTRA_DIST = instrument-map.h -libsciseq_a_SOURCES = sequencers.c oss-adlib.c mt32.c gm.c instrument-map.c \ - map-mt32-to-gm.c diff --git a/engines/sci/sfx/softseq/Makefile.am b/engines/sci/sfx/softseq/Makefile.am deleted file mode 100644 index af7f8ca2c9..0000000000 --- a/engines/sci/sfx/softseq/Makefile.am +++ /dev/null @@ -1,5 +0,0 @@ -noinst_LIBRARIES = libscisoftseq.a -INCLUDES = -I$(top_srcdir)/src/include @EXTRA_INCLUDES@ -libscisoftseq_a_SOURCES = softsequencers.c pcspeaker.c SN76496.c fmopl.c opl2.c amiga.c \ - fluidsynth.c -EXTRA_DIST = fmopl.h diff --git a/engines/sci/sfx/softseq/mt32/Makefile.am b/engines/sci/sfx/softseq/mt32/Makefile.am deleted file mode 100644 index 5d2ffa31c8..0000000000 --- a/engines/sci/sfx/softseq/mt32/Makefile.am +++ /dev/null @@ -1,5 +0,0 @@ -noinst_HEADERS = freeverb.h mt32emu.h part.h partialManager.h synth.h \ -i386.h mt32_file.h partial.h structures.h tables.h -noinst_LIBRARIES = libmt32emu.a -libmt32emu_a_SOURCES = freeverb.cpp mt32_file.cpp partial.cpp synth.cpp \ -i386.cpp part.cpp partialManager.cpp tables.cpp diff --git a/engines/sci/sfx/timer/Makefile.am b/engines/sci/sfx/timer/Makefile.am deleted file mode 100644 index 74f3bee426..0000000000 --- a/engines/sci/sfx/timer/Makefile.am +++ /dev/null @@ -1,4 +0,0 @@ -EXTRA_DIST = pthread.c -noinst_LIBRARIES = libscitimer.a -INCLUDES = -I$(top_srcdir)/src/include @EXTRA_INCLUDES@ -libscitimer_a_SOURCES = timers.c sigalrm.c |
