From 50f0c053c8be3ac812a8aab1143187a28f324209 Mon Sep 17 00:00:00 2001 From: kramm Date: Sun, 2 Dec 2001 15:02:35 +0000 Subject: [PATCH] added avi2swf. --- lib/example/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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) -- 1.7.10.4