diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2001-12-23 14:29:43 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2001-12-23 14:29:43 +0000 |
commit | b69e24cfa09c4482f496e7b5c69f1fb54edfccb6 (patch) | |
tree | 1be8bfcffbc1d68e858b24eb795573cb60569068 /ext/Makefile.am | |
parent | 854a7e0af7f9e106ff389ba0b2d4361021639fea (diff) | |
download | gst-plugins-bad-b69e24cfa09c4482f496e7b5c69f1fb54edfccb6.tar.gz gst-plugins-bad-b69e24cfa09c4482f496e7b5c69f1fb54edfccb6.tar.bz2 gst-plugins-bad-b69e24cfa09c4482f496e7b5c69f1fb54edfccb6.zip |
added hermes
Original commit message from CVS:
added hermes
Diffstat (limited to 'ext/Makefile.am')
-rw-r--r-- | ext/Makefile.am | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/ext/Makefile.am b/ext/Makefile.am index 83000f83..e981f57f 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -52,12 +52,24 @@ endif FESTIVAL_DIR= ## endif +if USE_GSM +GSM_DIR=gsm +else +GSM_DIR= +endif + if USE_FLAC FLAC_DIR=flac else FLAC_DIR= endif +if USE_HERMES +HERMES_DIR=hermes +else +HERMES_DIR= +endif + if USE_LAME LAME_DIR=lame else @@ -90,9 +102,9 @@ endif SUBDIRS=$(A52_DIR) $(AALIB_DIR) $(ALSA_DIR) $(AUDIOFILE_DIR) \ $(AVIFILE_DIR) $(CDPARANOIA_DIR) $(DVDREAD_DIR) $(ESD_DIR) \ - $(FESTIVAL_DIR) $(FLAC_DIR) \ + $(FESTIVAL_DIR) $(FLAC_DIR) $(GSM_DIR) $(HERMES_DIR) \ $(LAME_DIR) $(MAD_DIR) $(MPEG2DEC_DIR) \ $(SDL_DIR) $(VORBIS_DIR) DIST_SUBDIRS=a52 aalib alsa avifile audiofile cdparanoia dvdread esd \ - festival flac lame mad mpeg2dec sdl vorbis + festival flac gsm hermes lame mad mpeg2dec sdl vorbis |