diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-06-06 00:14:18 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-06-06 00:14:18 +0000 |
commit | 6f1af73557824b1872732b7823e881a14f870077 (patch) | |
tree | 3d22e9a9585b538bd4295898f1e2f5a89d36619b /libavcodec/Makefile | |
parent | 6f74b71ef0f5457b8cc736cb8f828ec1b75a217c (diff) | |
download | ffmpeg-6f1af73557824b1872732b7823e881a14f870077.tar.gz |
Give all wrappers for external libraries names starting with lib.
Originally committed as revision 9226 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 0eb15fd624..796682c52a 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -277,16 +277,16 @@ OBJS-$(CONFIG_ADPCM_YAMAHA_DECODER) += adpcm.o OBJS-$(CONFIG_ADPCM_YAMAHA_ENCODER) += adpcm.o # external codec libraries -OBJS-$(CONFIG_LIBAMR) += amr.o -OBJS-$(CONFIG_LIBA52) += a52dec.o -OBJS-$(CONFIG_LIBFAAC) += faac.o -OBJS-$(CONFIG_LIBFAAD) += faad.o +OBJS-$(CONFIG_LIBA52) += liba52.o +OBJS-$(CONFIG_LIBAMR) += libamr.o +OBJS-$(CONFIG_LIBFAAC) += libfaac.o +OBJS-$(CONFIG_LIBFAAD) += libfaad.o OBJS-$(CONFIG_LIBGSM) += libgsm.o -OBJS-$(CONFIG_LIBMP3LAME) += mp3lameaudio.o +OBJS-$(CONFIG_LIBMP3LAME) += libmp3lame.o OBJS-$(CONFIG_LIBTHEORA) += libtheoraenc.o -OBJS-$(CONFIG_LIBVORBIS) += oggvorbis.o -OBJS-$(CONFIG_X264) += x264.o -OBJS-$(CONFIG_XVID) += xvidff.o xvid_rc.o +OBJS-$(CONFIG_LIBVORBIS) += libvorbis.o +OBJS-$(CONFIG_X264) += libx264.o +OBJS-$(CONFIG_XVID) += libxvidff.o libxvid_rc.o OBJS-$(CONFIG_AAC_PARSER) += aac_parser.o aac_ac3_parser.o |