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 /libavformat | |
parent | 1f4f752117c0519345a1b0a725a57440cc8924ec (diff) | |
download | ffmpeg-9eb83a56aad355608ff8ae57648ddcf76e218798.tar.gz |
build: cosmetics: Split HEADERS/OBJS/PROGS lists into one entry per line.
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/Makefile | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index 681ea1ba9a..9a6cb558ea 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -1,7 +1,9 @@ NAME = avformat FFLIBS = avcodec avutil -HEADERS = avformat.h avio.h version.h +HEADERS = avformat.h \ + avio.h \ + version.h \ OBJS = allformats.o \ avio.o \ @@ -352,8 +354,14 @@ OBJS-$(CONFIG_UDP_PROTOCOL) += udp.o SKIPHEADERS-$(CONFIG_NETWORK) += network.h rtsp.h -EXAMPLES = metadata output +EXAMPLES = metadata \ + output \ + TESTPROGS = seek -TOOLS = aviocat ismindex pktdumper probetest + +TOOLS = aviocat \ + ismindex \ + pktdumper \ + probetest \ $(SUBDIR)output-example$(EXESUF): ELIBS = -lswscale |