Search
lxdream.org :: lxdream/src/Makefile.am :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/Makefile.am
changeset 643:653b0a70f173
prev614:a2d239d4438a
next644:ccae4bfa5f82
author bhaal22
date Tue Feb 26 01:10:48 2008 +0000 (16 years ago)
permissions -rw-r--r--
last change Commit initial ALSA audio driver
Add init/shutdown stubs to audio driver structure
file annotate diff log raw
1.1 --- a/src/Makefile.am Mon Jan 28 02:38:09 2008 +0000
1.2 +++ b/src/Makefile.am Tue Feb 26 01:10:48 2008 +0000
1.3 @@ -5,7 +5,7 @@
1.4 -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
1.5 -DPACKAGE_CONF_DIR=\""$(sysconfdir)"\" \
1.6 -Ish4 \
1.7 - @GTK_CFLAGS@ @LIBPNG_CFLAGS@ @ESOUND_CFLAGS@
1.8 + @GTK_CFLAGS@ @LIBPNG_CFLAGS@ @ESOUND_CFLAGS@ @ALSA_CFLAGS@
1.9
1.10 bin_PROGRAMS = lxdream
1.11 noinst_PROGRAMS = gendec genglsl
1.12 @@ -83,7 +83,11 @@
1.13 lxdream_SOURCES += drivers/audio_esd.c
1.14 endif
1.15
1.16 -lxdream_LDADD = @GTK_LIBS@ @LIBPNG_LIBS@ @ESOUND_LIBS@ $(INTLLIBS)
1.17 +if AUDIO_ALSA
1.18 +lxdream_SOURCES += drivers/audio_alsa.c
1.19 +endif
1.20 +
1.21 +lxdream_LDADD = @GTK_LIBS@ @LIBPNG_LIBS@ @ESOUND_LIBS@ @ALSA_LIBS@ $(INTLLIBS)
1.22
1.23 gendec_LDADD = @GTK_LIBS@ $(INTLLIBS)
1.24 genglsl_LDADD = @GTK_LIBS@ $(INTLLIBS)
.