Files
FFmpeg/libavfilter/Makefile
T

39 lines
928 B
Makefile
Raw Normal View History

2008-02-15 19:21:42 +00:00
include ../config.mak
2008-02-15 19:18:12 +00:00
2008-02-15 19:30:58 +00:00
CFLAGS+=-I$(SRC_PATH)/libavcodec -I$(SRC_PATH)/libswscale
2008-02-15 19:18:12 +00:00
2008-02-15 19:21:42 +00:00
OBJS = avfilter.o \
avfiltergraph.o \
avfiltergraphdesc.o \
defaults.o \
2008-02-15 19:33:05 +00:00
formats.o \
2008-02-15 19:18:12 +00:00
2008-02-15 19:21:42 +00:00
# TODO: real conditional compilation
2008-02-15 19:30:58 +00:00
OBJS-yes = vf_crop.o \
vf_fifo.o \
vf_fps.o \
2008-02-15 19:33:05 +00:00
vf_hflip.o \
2008-02-15 19:30:58 +00:00
vf_negate.o \
2008-02-15 19:33:05 +00:00
vf_format.o \
vf_overlay.o \
2008-02-15 19:33:05 +00:00
vf_rotate.o \
2008-02-15 19:30:58 +00:00
vf_scale.o \
2008-02-15 19:33:05 +00:00
vf_setpts.o \
2008-02-15 19:21:42 +00:00
vf_slicify.o \
2008-02-15 19:30:58 +00:00
vf_split.o \
2008-02-15 19:33:05 +00:00
vf_transpose.o \
vf_vflip.o \
2008-02-15 19:33:05 +00:00
avfiltergraphfile.o \
2008-02-15 19:21:21 +00:00
2008-02-15 19:21:42 +00:00
HEADERS = avfilter.h
2008-02-15 19:18:12 +00:00
2008-02-15 19:33:48 +00:00
EXTRALIBS := -L$(BUILD_ROOT)/libavcodec -lavcodec$(BUILDSUF) \
-L$(BUILD_ROOT)/libswscale -lswscale$(BUILDSUF) \
-L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS)
2008-02-15 19:21:42 +00:00
NAME=avfilter
LIBVERSION=$(LAVFILTERVERSION)
LIBMAJOR=$(LAVFILTERMAJOR)
include ../common.mak