From 9cec2cd79fbfaf52f45e120341d2ca2d47c0b89c Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Fri, 21 Dec 2001 09:41:40 +0000 Subject: [PATCH] this one could come in handy Original commit message from CVS: this one could come in handy --- ext/Makefile.am | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 ext/Makefile.am diff --git a/ext/Makefile.am b/ext/Makefile.am new file mode 100644 index 0000000..c0ad328 --- /dev/null +++ b/ext/Makefile.am @@ -0,0 +1,34 @@ +if USE_ESD +ESD_DIR=esd +else +ESD_DIR= +endif + +if USE_LAME +LAME_DIR=lame +else +LAME_DIR= +endif + +if USE_MAD +MAD_DIR=mad +else +MAD_DIR= +endif + +if USE_SDL +SDL_DIR=sdl +else +SDL_DIR= +endif + +if USE_VORBIS +VORBIS_DIR=vorbis +else +VORBIS_DIR= +endif + + +SUBDIRS=$(ESD_DIR) $(LAME_DIR) $(MAD_DIR) $(SDL_DIR) $(VORBIS_DIR) + +DIST_SUBDIRS=esd lame mad sdl vorbis -- 2.7.4