From: kramm Date: Sun, 2 Dec 2001 15:02:35 +0000 (+0000) Subject: added avi2swf. X-Git-Tag: release-0-2-1~67 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=50f0c053c8be3ac812a8aab1143187a28f324209 added avi2swf. --- diff --git a/lib/example/Makefile b/lib/example/Makefile index e12c49b..a8c85eb 100644 --- a/lib/example/Makefile +++ b/lib/example/Makefile @@ -12,7 +12,7 @@ DBFLAGS = -g2 %.o: %.cc $(CXX) -c $(CFLAGS) $(DBFLAGS) -o $@ $< -all: jpegtest box shape1 transtest zlibtest sprites buttontest dumpfont text makefonts glyphshape +all: jpegtest box shape1 transtest zlibtest sprites buttontest dumpfont text makefonts glyphshape avi2swf movies: jpegtest box shape1 transtest zlibtest sprites buttontest dumpfont text glyphshape ./jpegtest @@ -26,6 +26,12 @@ movies: jpegtest box shape1 transtest zlibtest sprites buttontest dumpfont text ./text ./makefonts +avi2swf.o: avi2swf.cc + $(CXX) -o avi2swf.o -c avi2swf.cc `avifile-config --cflags` + +avi2swf: $(RFXSWF) avi2swf.o + $(CXX) -o avi2swf avi2swf.o $(RFXSWF) $(LDLIBS) `avifile-config --libs` + box: $(RFXSWF) box.o $(CC) -o box box.o $(RFXSWF) $(LDLIBS) $(DBFLAGS)