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 /libavutil | |
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 'libavutil')
-rw-r--r-- | libavutil/Makefile | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index bcbc9b3c9a..be2f3e1e09 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -2,6 +2,23 @@ include $(SUBDIR)../config.mak NAME = avutil +HEADERS = adler32.h \ + avstring.h \ + avutil.h \ + base64.h \ + common.h \ + crc.h \ + fifo.h \ + intfloat_readwrite.h \ + log.h \ + lzo.h \ + mathematics.h \ + md5.h \ + mem.h \ + random.h \ + rational.h \ + sha1.h + OBJS = adler32.o \ aes.o \ base64.o \ @@ -24,23 +41,6 @@ OBJS = adler32.o \ tree.o \ utils.o \ -HEADERS = adler32.h \ - avstring.h \ - avutil.h \ - base64.h \ - common.h \ - crc.h \ - fifo.h \ - intfloat_readwrite.h \ - log.h \ - lzo.h \ - mathematics.h \ - md5.h \ - mem.h \ - random.h \ - rational.h \ - sha1.h - TESTS = $(addsuffix -test$(EXESUF), adler32 aes crc des lls md5 pca random sha1 softfloat tree) include $(SUBDIR)../subdir.mak |