diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-11-20 22:53:18 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-11-20 22:53:18 +0000 |
commit | f0e602351eadd2f5f465ff29c140b376646fd8dd (patch) | |
tree | 93aca86012f1e3ccafb365f5b563006d9e54f7ed /libavcodec | |
parent | 0d2d0f97a58d12d5804bf913348e498fac2cd25c (diff) | |
download | ffmpeg-f0e602351eadd2f5f465ff29c140b376646fd8dd.tar.gz |
cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
Originally committed as revision 15896 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 1ee8425e47..f4c4ce7f66 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -3,6 +3,8 @@ include $(SUBDIR)../config.mak NAME = avcodec FFLIBS = avutil +HEADERS = avcodec.h opt.h + OBJS = allcodecs.o \ audioconvert.o \ bitstream.o \ @@ -20,9 +22,6 @@ OBJS = allcodecs.o \ simple_idct.o \ utils.o \ - -HEADERS = avcodec.h opt.h - # parts needed for many different codecs OBJS-$(CONFIG_ENCODERS) += faandct.o jfdctfst.o jfdctint.o OBJS-$(CONFIG_FFT) += fft.o |