diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-02-16 17:58:50 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-04-07 15:26:08 +0200 |
commit | 01621202aad7e27b2a05c71d9ad7a19dfcbe17ec (patch) | |
tree | 125d182402e78d17ed8312303da9a9a591ac3623 /libavresample | |
parent | e656a6ccd9cab1b0a79cffe3e609793857aae330 (diff) | |
download | ffmpeg-01621202aad7e27b2a05c71d9ad7a19dfcbe17ec.tar.gz |
build: miscellaneous cosmetics
Restore alphabetical order in lists, break overly long lines, do some
prettyprinting, add some explanatory section comments, group parts
together that belong together logically.
Diffstat (limited to 'libavresample')
-rw-r--r-- | libavresample/aarch64/Makefile | 8 | ||||
-rw-r--r-- | libavresample/arm/Makefile | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/libavresample/aarch64/Makefile b/libavresample/aarch64/Makefile index 1d9e5f8ca0..f92699ef1a 100644 --- a/libavresample/aarch64/Makefile +++ b/libavresample/aarch64/Makefile @@ -1,7 +1,7 @@ -OBJS += aarch64/audio_convert_init.o \ - aarch64/resample_init.o \ +OBJS += aarch64/audio_convert_init.o \ + aarch64/resample_init.o \ OBJS-$(CONFIG_NEON_CLOBBER_TEST) += aarch64/neontest.o -NEON-OBJS += aarch64/audio_convert_neon.o \ - aarch64/resample_neon.o \ +NEON-OBJS += aarch64/audio_convert_neon.o \ + aarch64/resample_neon.o \ diff --git a/libavresample/arm/Makefile b/libavresample/arm/Makefile index affc2bfa45..352d1a8c13 100644 --- a/libavresample/arm/Makefile +++ b/libavresample/arm/Makefile @@ -1,7 +1,7 @@ -OBJS += arm/audio_convert_init.o \ - arm/resample_init.o +OBJS += arm/audio_convert_init.o \ + arm/resample_init.o OBJS-$(CONFIG_NEON_CLOBBER_TEST) += arm/neontest.o -NEON-OBJS += arm/audio_convert_neon.o \ - arm/resample_neon.o +NEON-OBJS += arm/audio_convert_neon.o \ + arm/resample_neon.o |