diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 19:34:43 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 19:34:43 +0000 |
commit | 217296130c3d2a74f1fc0612a49e2b0af8b75177 (patch) | |
tree | 9bac2c7043a89d54a5a32193c7b0b88acc07a193 /libavfilter/Makefile | |
parent | 0d6423514bd56b8d731e7b20cb3d9dd483dedc0d (diff) | |
download | ffmpeg-217296130c3d2a74f1fc0612a49e2b0af8b75177.tar.gz |
True conditional compilation
Commited in SoC by Vitor Sessak on 2008-02-12 20:35:37
Originally committed as revision 11955 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/Makefile')
-rw-r--r-- | libavfilter/Makefile | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index 272761f5be..c96e6d07d6 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -2,29 +2,30 @@ include ../config.mak CFLAGS+=-I$(SRC_PATH)/libavformat -I$(SRC_PATH)/libavcodec -I$(SRC_PATH)/libswscale -OBJS = avfilter.o \ +OBJS = allfilters.o \ + avfilter.o \ avfiltergraph.o \ avfiltergraphdesc.o \ defaults.o \ formats.o \ + avfiltergraphfile.o \ # TODO: real conditional compilation -OBJS-yes = vf_crop.o \ - vf_fifo.o \ - vf_fps.o \ - vf_hflip.o \ - vf_negate.o \ - vf_format.o \ - vf_overlay.o \ - vf_rotate.o \ - vf_scale.o \ - vf_setpts.o \ - vf_slicify.o \ - vf_split.o \ - vf_transpose.o \ - vf_vflip.o \ - avfiltergraphfile.o \ + +OBJS-$(CONFIG_VF_CROP) += vf_crop.o +OBJS-$(CONFIG_VF_FPS) += vf_fps.o +OBJS-$(CONFIG_VF_HFLIP) += vf_hflip.o +OBJS-$(CONFIG_VF_NEGATE) += vf_negate.o +OBJS-$(CONFIG_VF_FORMAT) += vf_format.o +OBJS-$(CONFIG_VF_OVERLAY) += vf_overlay.o +OBJS-$(CONFIG_VF_ROTATE) += vf_rotate.o +OBJS-$(CONFIG_VF_SCALE) += vf_scale.o +OBJS-$(CONFIG_VF_SETPTS) += vf_setpts.o +OBJS-$(CONFIG_VF_SLICIFY) += vf_slicify.o +OBJS-$(CONFIG_VF_SPLIT) += vf_split.o +OBJS-$(CONFIG_VF_TRANSPOSE) += vf_transpose.o +OBJS-$(CONFIG_VF_VFLIP) += vf_vflip.o OBJS-$(CONFIG_AVFILTER_LAVF) += vsrc_movie.o HEADERS = avfilter.h |