changeset 587:53b9b303d6d5 libavutil

cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
author diego
date Thu, 20 Nov 2008 22:53:18 +0000
parents 316f011e6da0
children b27f233a4b3c
files Makefile
diffstat 1 files changed, 17 insertions(+), 17 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Wed Nov 05 23:44:23 2008 +0000
+++ b/Makefile	Thu Nov 20 22:53:18 2008 +0000
@@ -2,6 +2,23 @@
 
 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 @@
        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