X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2FMakefile.in;h=7d7915e7db6bc51d80d5a9c62518205fdccf3ae2;hb=060e9eb4ab789c3a208846b9eaa7e586c664aeb3;hp=5fd2c2afb46933c4fcdbd28cf69fb5cea7595fcf;hpb=2828d9c7bdb68ced20dabb45ffb50ee178cd0015;p=swftools.git diff --git a/lib/Makefile.in b/lib/Makefile.in index 5fd2c2a..7d7915e 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) +all: librfxswf$(A) q.$(O) os.$(O) gfxtools.$(O) art/libart$(A) lame_objects = @lame_objects@ @@ -17,6 +17,11 @@ drawer.$(O): drawer.c drawer.h $(C) drawer.c -o $@ 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 $@ log.$(O): log.c log.h @@ -29,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 @@ -36,9 +44,9 @@ h.263/h263tables.$(O): h.263/h263tables.c h.263/h263tables.h h.263/swfvideo.$(O): h.263/swfvideo.c h.263/h263tables.h h.263/dct.h $(C) h.263/swfvideo.c -o h.263/swfvideo.$(O) -librfxswf.a: Makefile rfxswf.$(O) drawer.$(O) bitio.$(O) log.$(O) MD5.$(O) $(lame_objects) $(h263_objects) $(actioncompiler_objects) - $(AR) r librfxswf.a rfxswf.$(O) drawer.$(O) bitio.$(O) log.$(O) MD5.$(O) $(lame_objects) $(h263_objects) $(actioncompiler_objects) - $(RANLIB) librfxswf.a +librfxswf$(A): Makefile rfxswf.$(O) drawer.$(O) bitio.$(O) log.$(O) MD5.$(O) $(lame_objects) $(h263_objects) $(actioncompiler_objects) + $(AR) r librfxswf$(A) rfxswf.$(O) drawer.$(O) bitio.$(O) log.$(O) MD5.$(O) $(lame_objects) $(h263_objects) $(actioncompiler_objects) + $(RANLIB) librfxswf$(A) install: uninstall: @@ -46,7 +54,7 @@ uninstall: clean: rm -f *.o *.obj *.lo *.a *.la gmon.out cd lame && $(MAKE) clean && cd .. || true - cd h.263 && $(MAKE) clean && cd .. cd action && $(MAKE) clean && cd .. cd python && $(MAKE) clean && cd .. + cd art && $(MAKE) clean && cd ..