Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-11-21 01:53:18 +0300
committerDiego Biurrun <diego@biurrun.de>2008-11-21 01:53:18 +0300
commitf0e602351eadd2f5f465ff29c140b376646fd8dd (patch)
tree93aca86012f1e3ccafb365f5b563006d9e54f7ed /libavutil
parent0d2d0f97a58d12d5804bf913348e498fac2cd25c (diff)
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/Makefile34
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