Commit 20123584 authored by Vitor Sessak's avatar Vitor Sessak

First version of libavfilter Makefile

Original commit message:
Simple filter test program

Commited in SoC by Bobby Bingham on 2007-06-29 17:08:49

Originally committed as revision 11943 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent cc9853d3
CC = gcc
CFLAGS = -g -I../libavcodec -I../libavutil
LIBS = ../libavcodec/libavcodec.a ../libavutil/libavutil.a -lm -lSDL
OBJECTS = avfilter.o \
vsrc_dummy.o \
vo_sdl.o \
vf_crop.o \
vf_passthrough.o \
all: filter_test
filter_test: $(OBJECTS) filter_test.c
$(CC) $(CFLAGS) $^ -o $@ $(LIBS)
$(OBJECTS): %.o: %.c
$(CC) $(CFLAGS) -c $<
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment