1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-11 09:57:54 +02:00
ffmpeg/libavfilter/Makefile
Vitor Sessak 52bfefeb45 Add rule for make clean.
Commited in SoC by Bobby Bingham on 2007-07-15 16:16:36

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

25 lines
548 B
Makefile

CC = gcc
CFLAGS = -g -I../libavcodec -I../libavutil
LIBS = ../libavcodec/libavcodec.a ../libavutil/libavutil.a -lm -lSDL
OBJECTS = avfilter.o \
avfiltergraph.o \
vsrc_dummy.o \
vsrc_ppm.o \
vo_sdl.o \
vf_crop.o \
vf_passthrough.o \
vf_rgb2bgr.o \
vf_slicify.o \
all: filter_test
clean:
rm -f filter_test $(OBJECTS)
filter_test: $(OBJECTS) filter_test.c
$(CC) $(CFLAGS) $^ -o $@ $(LIBS)
$(OBJECTS): %.o: %.c
$(CC) $(CFLAGS) -c $<