From 0b7044418c81b751d9f059fbfcade470a7d5c882 Mon Sep 17 00:00:00 2001 From: Takashi Iwai Date: Thu, 22 Jan 2009 12:15:56 +0100 Subject: Clean up Makefile.am Avoid unnecessary substitution and use simply SUBDIRS += ... Signed-off-by: Takashi Iwai --- Makefile.am | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/Makefile.am b/Makefile.am index 668b1ef..69cfe0d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,27 +1,26 @@ +SUBDIRS = oss mix usb_stream arcam-av doc if HAVE_JACK -JACKDIR = jack +SUBDIRS += jack endif if HAVE_PULSE -PULSEDIR = pulse +SUBDIRS += pulse endif if HAVE_SAMPLERATE -SAMPLERATEDIR = rate +SUBDIRS += rate endif if HAVE_AVCODEC -A52DIR = a52 -LAVCRATEDIR = rate-lavc +SUBDIRS += a52 rate-lavc endif if HAVE_MAEMO_PLUGIN -MAEMODIR = maemo +SUBDIRS += maemo endif if HAVE_PPH -PPHDIR = pph +SUBDIRS += pph endif if HAVE_SPEEXDSP -SPEEXDIR = speex +SUBDIRS += speex endif -SUBDIRS = oss mix $(PPHDIR) $(JACKDIR) $(PULSEDIR) $(SAMPLERATEDIR) $(A52DIR) $(LAVCRATEDIR) $(MAEMODIR) $(SPEEXDIR) usb_stream arcam-av doc EXTRA_DIST = gitcompile version COPYING.GPL m4/attributes.m4 AUTOMAKE_OPTIONS = foreign ACLOCAL_AMFLAGS = -I m4 -- cgit