diff options
author | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-01-14 04:24:29 +0000 |
---|---|---|
committer | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-01-14 04:24:29 +0000 |
commit | ca9cc28c62a2c2877186569f4ab0cf1034502a73 (patch) | |
tree | d46c878d8f03c294452d625c851d6bb3668c5087 /Makefile.target | |
parent | b34d259a81500d75e4cf435f1e8b262ba7e1421a (diff) |
pthreads-based audio and miscellaneous audio clean-up (malc).
ESD support (malc, Frederick Reeve).
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3917 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Makefile.target b/Makefile.target index acd6cda4ad..6c8180ea84 100644 --- a/Makefile.target +++ b/Makefile.target @@ -404,6 +404,9 @@ endif ifdef CONFIG_ALSA LIBS += -lasound endif +ifdef CONFIG_ESD +LIBS += -lesd +endif ifdef CONFIG_DSOUND LIBS += -lole32 -ldxguid endif @@ -412,6 +415,9 @@ LIBS += $(CONFIG_FMOD_LIB) endif SOUND_HW = sb16.o es1370.o +ifdef CONFIG_AC97 +SOUND_HW += ac97.o +endif ifdef CONFIG_ADLIB SOUND_HW += fmopl.o adlib.o endif @@ -641,8 +647,9 @@ endif ifeq (1, 0) audio.o sdlaudio.o dsoundaudio.o ossaudio.o wavaudio.o noaudio.o \ -fmodaudio.o alsaaudio.o mixeng.o sb16.o es1370.o gus.o adlib.o: \ -CFLAGS := $(CFLAGS) -Wall -Werror -W -Wsign-compare +fmodaudio.o alsaaudio.o mixeng.o sb16.o es1370.o ac97.o gus.o adlib.o \ +esdaudio.o audio_pt_int.o: \ +CFLAGS := $(CFLAGS) -O0 -g -Wall -Werror -W -Wsign-compare -Wno-unused endif # Include automatically generated dependency files |