summaryrefslogtreecommitdiff
path: root/libavfilter/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 /libavfilter/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 'libavfilter/Makefile')
-rw-r--r--libavfilter/Makefile12
1 files changed, 5 insertions, 7 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile
index 38bd9fa409..83575fe18b 100644
--- a/libavfilter/Makefile
+++ b/libavfilter/Makefile
@@ -1,5 +1,10 @@
include ../config.mak
+NAME = avfilter
+FFLIBS = avcodec avutil
+FFLIBS-$(CONFIG_SWSCALER) += swscale
+FFLIBS-$(CONFIG_AVFILTER_LAVF) += avformat
+
OBJS = allfilters.o \
avfilter.o \
defaults.o \
@@ -9,11 +14,4 @@ OBJS = allfilters.o \
HEADERS = avfilter.h
-FFLIBS = avcodec avutil
-
-FFLIBS-$(CONFIG_SWSCALER) += swscale
-FFLIBS-$(CONFIG_AVFILTER_LAVF) += avformat
-
-NAME=avfilter
-
include ../common.mak