From: kramm Date: Tue, 22 Feb 2005 20:02:52 +0000 (+0000) Subject: added libart compilation X-Git-Tag: release-0-7-0~214 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=4654978e22ed7968673ee108bffd6998f132fd16 added libart compilation --- diff --git a/lib/Makefile.in b/lib/Makefile.in index 8886cf4..0a7c6d8 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -3,7 +3,7 @@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ include ../Makefile.common -all: librfxswf$(A) q.$(O) os.$(O) +all: librfxswf$(A) q.$(O) os.$(O) gfxtools.$(O) art/libart$(A) lame_objects = @lame_objects@ @@ -19,6 +19,8 @@ q.$(O): q.c q.h $(top_builddir)/config.h $(C) q.c -o $@ os.$(O): os.c os.h $(top_builddir)/config.h $(C) -DSWFTOOLS_DATADIR=\"$(pkgdatadir)\" os.c -o $@ +gfxtools.$(O): gfxtools.c gfxtools.h $(top_builddir)/config.h + $(C) gfxtools.c -o $@ MD5.$(O): MD5.c MD5.h $(C) MD5.c -o $@ @@ -32,6 +34,9 @@ $(lame_objects): $(actioncompiler_objects): cd action;make all;cd .. +art/libart$(A): + cd art; $(MAKE) libart$(A);cd .. + h.263/dct.$(O): h.263/dct.c h.263/dct.h $(C) h.263/dct.c -o h.263/dct.$(O) h.263/h263tables.$(O): h.263/h263tables.c h.263/h263tables.h @@ -51,4 +56,5 @@ clean: cd lame && $(MAKE) clean && cd .. || true cd action && $(MAKE) clean && cd .. cd python && $(MAKE) clean && cd .. + cd libart && $(MAKE) clean && cd ..