diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-04-14 13:05:08 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-05-07 14:01:32 +0200 |
commit | 9eb83a56aad355608ff8ae57648ddcf76e218798 (patch) | |
tree | aa05fea64fd25c3310d5725317d6dc0a24f16e80 /libavutil/Makefile | |
parent | 1f4f752117c0519345a1b0a725a57440cc8924ec (diff) | |
download | ffmpeg-9eb83a56aad355608ff8ae57648ddcf76e218798.tar.gz |
build: cosmetics: Split HEADERS/OBJS/PROGS lists into one entry per line.
Diffstat (limited to 'libavutil/Makefile')
-rw-r--r-- | libavutil/Makefile | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index 69f2acd72e..fb19ebf1e2 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -37,6 +37,11 @@ HEADERS = adler32.h \ samplefmt.h \ sha.h \ +ARCH_HEADERS = bswap.h \ + intmath.h \ + intreadwrite.h \ + timer.h \ + BUILT_HEADERS = avconfig.h OBJS = adler32.o \ @@ -74,7 +79,19 @@ OBJS = adler32.o \ tree.o \ utils.o \ -TESTPROGS = adler32 aes avstring base64 cpu crc des eval fifo lfg lls \ - md5 opt parseutils sha tree - -ARCH_HEADERS = bswap.h intmath.h intreadwrite.h timer.h +TESTPROGS = adler32 \ + aes \ + avstring \ + base64 \ + cpu \ + crc \ + des \ + eval \ + fifo \ + lfg \ + lls \ + md5 \ + opt \ + parseutils \ + sha \ + tree \ |