diff options
author | Simon Howard | 2007-06-17 18:40:02 +0000 |
---|---|---|
committer | Simon Howard | 2007-06-17 18:40:02 +0000 |
commit | beab4eb58b667a5883166bd1dd7bc33369a005c7 (patch) | |
tree | a6574cd329b3caea7a600ec6ce9184cc79ffb494 /src/Makefile.am | |
parent | 5fc7913741e9f722e31735baea10f635fc18acce (diff) | |
download | chocolate-doom-beab4eb58b667a5883166bd1dd7bc33369a005c7.tar.gz chocolate-doom-beab4eb58b667a5883166bd1dd7bc33369a005c7.tar.bz2 chocolate-doom-beab4eb58b667a5883166bd1dd7bc33369a005c7.zip |
Split i_sound.c into i_sdlsound.c, i_sdlmusic.c, with generic "sound
driver" modules, one for PC speaker and one for digital output.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 913
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 75c08c05..031369a7 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -95,6 +95,7 @@ r_sky.c r_sky.h \ r_state.h \ r_things.c r_things.h \ sounds.c sounds.h \ +s_sound.c s_sound.h \ st_lib.c st_lib.h \ st_stuff.c st_stuff.h \ tables.c tables.h \ @@ -146,9 +147,9 @@ w_merge.c w_merge.h FEATURE_SOUND_SOURCE_FILES = \ i_pcsound.c i_pcsound.h \ -i_sound.c i_sound.h \ -mus2mid.c mus2mid.h \ -s_sound.c s_sound.h +i_sdlsound.c \ +i_sdlmusic.c i_music.h \ +mus2mid.c mus2mid.h SOURCE_FILES = $(MAIN_SOURCE_FILES) \ $(FEATURE_DEHACKED_SOURCE_FILES) \ |