diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 19:18:12 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 19:18:12 +0000 |
commit | 20123584557678521906ba066e3f570d4bcca326 (patch) | |
tree | 5e45bba31f3407aee7f5e27f5a552b7f3706bf20 /libavfilter/Makefile | |
parent | cc9853d38f6b0fbfb26d10efd06950fa1f93791e (diff) | |
download | ffmpeg-20123584557678521906ba066e3f570d4bcca326.tar.gz |
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
Diffstat (limited to 'libavfilter/Makefile')
-rw-r--r-- | libavfilter/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile new file mode 100644 index 0000000000..b27b4f14be --- /dev/null +++ b/libavfilter/Makefile @@ -0,0 +1,17 @@ +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 $< |