1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-11 09:57:54 +02:00
ffmpeg/libavfilter/Makefile
Vitor Sessak 782e83e21b work into the ffmpeg build system
Commited in SoC by Bobby Bingham on 2007-07-24 17:59:16

Originally committed as revision 11946 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-15 19:21:42 +00:00

37 lines
664 B
Makefile

include ../config.mak
CFLAGS+=-I$(SRC_PATH)/libavcodec
OBJS = avfilter.o \
avfiltergraph.o \
# TODO: real conditional compilation
OBJS-yes = vsrc_dummy.o \
vsrc_ppm.o \
vo_sdl.o \
vf_crop.o \
vf_passthrough.o \
vf_rgb2bgr.o \
vf_slicify.o \
HEADERS = avfilter.h
EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS)
NAME=avfilter
LIBVERSION=$(LAVFILTERVERSION)
LIBMAJOR=$(LAVFILTERMAJOR)
include ../common.mak
clean::
rm -f \
filter_test $(TESTS)
tests: filter_test
filter_test: filter_test.o $(LIB)
$(CC) $(CFLAGS) $< -o $@ $(LIB) -lm -lSDL
.PHONY: tests