diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-03-08 14:39:43 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-03-08 14:39:43 +0000 |
commit | 9b25f4a65ffa71596fc09f6c1f553394c65b4692 (patch) | |
tree | b9c1c2a65fed98ccd93d803f9b5d7c95ac5f4eee /libavformat/Makefile | |
parent | 5dea940937caacc3baf974b134a961601834e802 (diff) | |
download | ffmpeg-9b25f4a65ffa71596fc09f6c1f553394c65b4692.tar.gz |
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/Makefile | 7 |
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 |