diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-06-05 17:05:30 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-06-05 17:27:38 +0200 |
commit | 5a7a9f02de66357fb5d8dae06ea3cb408885d2fe (patch) | |
tree | 1f7100fa40dc54eb4ed0c2a0fe0238611103c459 /libswresample | |
parent | 02827a3c9952201ffeefce8107c59f07697ede8f (diff) | |
download | ffmpeg-5a7a9f02de66357fb5d8dae06ea3cb408885d2fe.tar.gz |
libswresample/Makefile: put each object on its own line
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample')
-rw-r--r-- | libswresample/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libswresample/Makefile b/libswresample/Makefile index 6e4e468495..5b4c286c08 100644 --- a/libswresample/Makefile +++ b/libswresample/Makefile @@ -5,6 +5,10 @@ FFLIBS = avutil HEADERS = swresample.h -OBJS = swresample.o audioconvert.o resample.o rematrix.o dither.o +OBJS = audioconvert.o \ + dither.o \ + rematrix.o \ + resample.o \ + swresample.o \ TESTPROGS = swresample_test |