From 9eb83a56aad355608ff8ae57648ddcf76e218798 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sat, 14 Apr 2012 13:05:08 +0200 Subject: build: cosmetics: Split HEADERS/OBJS/PROGS lists into one entry per line. --- libavutil/Makefile | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) (limited to 'libavutil') 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 \ -- cgit v1.2.3 From dbe6ba55a320f5880c2b72c349be12164e6e4267 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Mon, 7 May 2012 12:08:58 +0200 Subject: build: cosmetics: Add missing end-of-line backslashes to item lists. --- libavcodec/Makefile | 3 ++- libavfilter/Makefile | 2 +- libavresample/Makefile | 4 ++-- libavresample/x86/Makefile | 4 ++-- libavutil/arm/Makefile | 2 +- 5 files changed, 8 insertions(+), 7 deletions(-) (limited to 'libavutil') diff --git a/libavcodec/Makefile b/libavcodec/Makefile index ba62ffa145..55767f7c39 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -696,7 +696,8 @@ SKIPHEADERS += %_tablegen.h \ aac_tablegen_decl.h \ fft-internal.h \ tableprint.h \ - $(ARCH)/vp56_arith.h + $(ARCH)/vp56_arith.h \ + SKIPHEADERS-$(CONFIG_DXVA2) += dxva2.h dxva2_internal.h SKIPHEADERS-$(CONFIG_LIBSCHROEDINGER) += libschroedinger.h SKIPHEADERS-$(CONFIG_MPEG_XVMC_DECODER) += xvmc.h diff --git a/libavfilter/Makefile b/libavfilter/Makefile index 619cef7445..ae858397df 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -16,7 +16,7 @@ OBJS = allfilters.o \ formats.o \ graphparser.o \ vf_scale.o \ - vsrc_buffer.o + vsrc_buffer.o \ OBJS-$(CONFIG_ANULL_FILTER) += af_anull.o diff --git a/libavresample/Makefile b/libavresample/Makefile index ce3fe81953..c0c20a900a 100644 --- a/libavresample/Makefile +++ b/libavresample/Makefile @@ -2,7 +2,7 @@ NAME = avresample FFLIBS = avutil HEADERS = avresample.h \ - version.h + version.h \ OBJS = audio_convert.o \ audio_data.o \ @@ -10,6 +10,6 @@ OBJS = audio_convert.o \ audio_mix_matrix.o \ options.o \ resample.o \ - utils.o + utils.o \ TESTPROGS = avresample diff --git a/libavresample/x86/Makefile b/libavresample/x86/Makefile index 63697faee7..65bed899ba 100644 --- a/libavresample/x86/Makefile +++ b/libavresample/x86/Makefile @@ -1,5 +1,5 @@ OBJS += x86/audio_convert_init.o \ - x86/audio_mix_init.o + x86/audio_mix_init.o \ YASM-OBJS += x86/audio_convert.o \ - x86/audio_mix.o + x86/audio_mix.o \ diff --git a/libavutil/arm/Makefile b/libavutil/arm/Makefile index 246f73a8ac..e600383b9c 100644 --- a/libavutil/arm/Makefile +++ b/libavutil/arm/Makefile @@ -1 +1 @@ -OBJS += arm/cpu.o +OBJS += arm/cpu.o \ -- cgit v1.2.3