diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-11-20 22:53:18 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-11-20 22:53:18 +0000 |
commit | f0e602351eadd2f5f465ff29c140b376646fd8dd (patch) | |
tree | 93aca86012f1e3ccafb365f5b563006d9e54f7ed /libavfilter | |
parent | 0d2d0f97a58d12d5804bf913348e498fac2cd25c (diff) | |
download | ffmpeg-f0e602351eadd2f5f465ff29c140b376646fd8dd.tar.gz |
cosmetics: Consistently place HEADERS before OBJS in all Makefiles.
Originally committed as revision 15896 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index 1cd4992442..9da8f910bc 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -5,6 +5,8 @@ FFLIBS = avcodec avutil FFLIBS-$(CONFIG_SWSCALE) += swscale FFLIBS-$(CONFIG_AVFILTER_LAVF) += avformat +HEADERS = avfilter.h + OBJS = allfilters.o \ avfilter.o \ defaults.o \ @@ -12,6 +14,4 @@ OBJS = allfilters.o \ #OBJS-$(CONFIG_XXX_FILTER) += vf_xxx.o -HEADERS = avfilter.h - include $(SUBDIR)../subdir.mak |