diff options
author | Viliam Mateicka <viliam.mateicka@gmail.com> | 2009-11-17 19:41:35 +0100 |
---|---|---|
committer | Viliam Mateicka <viliam.mateicka@gmail.com> | 2009-11-17 19:41:35 +0100 |
commit | 5420f9ae76babdfa4ecf35eaad44f90c5866e59a (patch) | |
tree | 7b70de8d9296faa953d6084e8cf97518a709259d /Makefile.am | |
parent | 39404725f05222706196c6faeaee841b999f9dfb (diff) | |
download | mpd-5420f9ae76babdfa4ecf35eaad44f90c5866e59a.tar.gz mpd-5420f9ae76babdfa4ecf35eaad44f90c5866e59a.tar.xz mpd-5420f9ae76babdfa4ecf35eaad44f90c5866e59a.zip |
encoder: introducing flac encoder plugin
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 13253d976..250360e01 100644 --- a/Makefile.am +++ b/Makefile.am @@ -501,11 +501,13 @@ endif ENCODER_CFLAGS = \ $(LAME_CFLAGS) \ $(TWOLAME_CFLAGS) \ + $(patsubst -I%/FLAC,-I%,$(FLAC_CFLAGS)) \ $(VORBISENC_CFLAGS) ENCODER_LIBS = \ $(LAME_LIBS) \ $(TWOLAME_LIBS) \ + $(FLAC_LIBS) \ $(VORBISENC_LIBS) ENCODER_SRC = @@ -529,6 +531,10 @@ endif if ENABLE_TWOLAME_ENCODER ENCODER_SRC += src/encoder/twolame_encoder.c endif + +if ENABLE_FLAC_ENCODER +ENCODER_SRC += src/encoder/flac_encoder.c +endif endif |