summaryrefslogtreecommitdiff
path: root/libavformat/Makefile
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-03-08 14:39:43 +0000
committerDiego Biurrun <diego@biurrun.de>2008-03-08 14:39:43 +0000
commit9b25f4a65ffa71596fc09f6c1f553394c65b4692 (patch)
treeb9c1c2a65fed98ccd93d803f9b5d7c95ac5f4eee /libavformat/Makefile
parent5dea940937caacc3baf974b134a961601834e802 (diff)
cosmetics: Consistently move NAME and FFLIBS to the top of each Makefile.
Originally committed as revision 12364 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r--libavformat/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile
index 3870986d42..3edeb53b4d 100644
--- a/libavformat/Makefile
+++ b/libavformat/Makefile
@@ -4,6 +4,9 @@
#
include ../config.mak
+NAME = avformat
+FFLIBS = avcodec avutil
+
OBJS = allformats.o cutils.o os_support.o sdp.o utils.o
HEADERS = avformat.h avio.h rtsp.h rtspcodes.h
@@ -190,8 +193,4 @@ OBJS-$(CONFIG_RTP_PROTOCOL) += rtpproto.o
OBJS-$(CONFIG_TCP_PROTOCOL) += tcp.o
OBJS-$(CONFIG_UDP_PROTOCOL) += udp.o
-FFLIBS = avcodec avutil
-
-NAME=avformat
-
include ../common.mak