diff options
author | icculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-08-31 19:42:55 +0000 |
---|---|---|
committer | icculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-08-31 19:42:55 +0000 |
commit | 1ba6d3c95eb53beed44897b2fcdb846df7e2feef (patch) | |
tree | 1303c23e454785f37d6107a3712ba288fc3393e5 /code/unix/Makefile | |
parent | 227d86d227c6951ee2bd98388e7960c479c2b2e6 (diff) | |
download | ioquake3-aero-1ba6d3c95eb53beed44897b2fcdb846df7e2feef.tar.gz ioquake3-aero-1ba6d3c95eb53beed44897b2fcdb846df7e2feef.zip |
SDL-based audio.
git-svn-id: svn://svn.icculus.org/quake3/trunk@51 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/unix/Makefile')
-rw-r--r-- | code/unix/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/code/unix/Makefile b/code/unix/Makefile index acee11a..0710b76 100644 --- a/code/unix/Makefile +++ b/code/unix/Makefile @@ -566,6 +566,7 @@ ifeq ($(PLATFORM),freebsd) $(B)/client/linux_glimp_sdl.o \ $(B)/client/linux_glimp.o \ $(B)/client/linux_snd.o \ + $(B)/client/linux_snd_sdl.o \ $(B)/client/snd_mixa.o \ $(B)/client/matha.o \ $(B)/client/ftol.o \ @@ -589,6 +590,7 @@ else $(B)/client/linux_glimp_sdl.o \ $(B)/client/linux_joystick.o \ $(B)/client/linux_snd.o \ + $(B)/client/linux_snd_sdl.o \ $(B)/client/snd_mixa.o \ $(B)/client/matha.o \ @@ -599,6 +601,7 @@ else $(B)/client/linux_glimp_smp.o \ $(B)/client/linux_joystick.o \ $(B)/client/linux_snd.o \ + $(B)/client/linux_snd_sdl.o \ $(B)/client/snd_mixa.o \ $(B)/client/matha.o @@ -770,6 +773,7 @@ $(B)/client/linux_joystick.o : $(UDIR)/linux_joystick.c; $(DO_CC) $(B)/client/linux_qgl.o : $(UDIR)/linux_qgl.c; $(DO_CC) $(GL_CFLAGS) $(B)/client/linux_input.o : $(UDIR)/linux_input.c; $(DO_CC) $(B)/client/linux_snd.o : $(UDIR)/linux_snd.c; $(DO_CC) +$(B)/client/linux_snd_sdl.o : $(UDIR)/linux_snd_sdl.c; $(DO_CC) $(B)/client/snd_mixa.o : $(UDIR)/snd_mixa.s; $(DO_AS) $(B)/client/matha.o : $(UDIR)/matha.s; $(DO_AS) @@ -1578,6 +1582,7 @@ Q3SOBJ = \ $(B)/q3static/linux_glimp.o \ $(B)/q3static/linux_joystick.o \ $(B)/q3static/linux_snd.o \ + $(B)/q3static/linux_snd_sdl.o \ $(B)/q3static/snd_mixa.o \ $(B)/q3static/matha.o @@ -1735,6 +1740,7 @@ $(B)/q3static/linux_joystick.o : $(UDIR)/linux_joystick.c; $(DO_CC) -DQ3_STATIC $(B)/q3static/linux_qgl.o : $(UDIR)/linux_qgl.c; $(DO_CC) -DQ3_STATIC $(B)/q3static/linux_input.o : $(UDIR)/linux_input.c; $(DO_CC) -DQ3_STATIC $(B)/q3static/linux_snd.o : $(UDIR)/linux_snd.c; $(DO_CC) -DQ3_STATIC +$(B)/q3static/linux_snd_sdl.o : $(UDIR)/linux_snd_sdl.c; $(DO_CC) -DQ3_STATIC $(B)/q3static/snd_mixa.o : $(UDIR)/snd_mixa.s; $(DO_AS) $(B)/q3static/matha.o : $(UDIR)/matha.s; $(DO_AS) $(B)/q3static/unzip.o : $(CMDIR)/unzip.c; $(DO_CC) -DQ3_STATIC |