X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fpython%2FMakefile.in;h=0c8fb1583a7a9a0599c8965f8be55359a54e6c4f;hb=bdad407fb79c2f7be9f3603694ebdeadc645b52d;hp=59ca61b00554cfb49daae4d085824b81cb605be0;hpb=7e3b0be3eec289768372c4751c78963b6c7d543b;p=swftools.git diff --git a/lib/python/Makefile.in b/lib/python/Makefile.in index 59ca61b..0c8fb15 100644 --- a/lib/python/Makefile.in +++ b/lib/python/Makefile.in @@ -3,7 +3,8 @@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ include ../../Makefile.common -all: SWF.$(SLEXT) SWF$(A) gfx.$(SLEXT) gfx$(A) +all: SWF.$(SLEXT) gfx.$(SLEXT) +static: SWF$(A) gfx$(A) exe: mypython$(E) swfpython$(E) testmem$(E) primitives.$(O): primitives.c primitives.h @@ -29,19 +30,20 @@ SWF.$(O): SWF.c pyutils.h primitives.h taglist.h $(C) -Wall -Wno-unused -fPIC $(PYTHON_INCLUDES) -c SWF.c -o SWF.$(O) SWF_OBJS=SWF.$(O) taglist.$(O) tag.$(O) image.$(O) tags.$(O) tagmap.$(O) action.$(O) primitives.$(O) pyutils.$(O) -SWF_DEPS=../librfxswf$(A) ../libbase$(A) ../art/libart$(A) +SWF_DEPS=../librfxswf$(A) ../libbase$(A) SWF.$(SLEXT): $(SWF_OBJS) $(SWF_DEPS) Makefile $(L) -g $(SHARED) $(SWF_OBJS) $(SWF_DEPS) -o SWF.$(SLEXT) $(PYTHON_LIB) $(LIBS) SWF$(A): $(SWF_OBJS) $(SWF_DEPS) Makefile $(AR) cru SWF$(A) $(SWF_OBJS) $(SWF_DEPS) $(RANLIB) SWF$(A) -GFX_DEPS=../libpdf$(A) ../devices/swf.$(O) ../librfxswf$(A) ../devices/artsutils.$(O) ../devices/arts.$(O) ../art/libart$(A) ../libgfx$(A) ../libbase$(A) +GFX_DEPS=../libgfxpdf$(A) ../libgfxswf$(A) ../librfxswf$(A) ../libgfx$(A) ../libocr$(A) ../libbase$(A) gfx.$(SLEXT): gfx.$(O) $(GFX_DEPS) Makefile $(L) -g $(SHARED) gfx.$(O) -o gfx.$(SLEXT) $(GFX_DEPS) $(PYTHON_LIB) $(LIBS) $(CXXLIBS) gfx$(A): gfx.$(O) $(GFX_DEPS) Makefile - mkdir tmp;cd tmp;for file in $(GFX_DEPS);do ar x ../$$file || cp ../$$file .;done - $(AR) cru gfx$(A) gfx.$(O) tmp/*.$(O) + mkdir -p tmp + ar cru gfx$(A) gfx.$(O) + for file in $(GFX_DEPS);do rm -f tmp/*;cd tmp;ar x ../$$file || cp ../$$file .;cd ..;$(AR) q gfx$(A) tmp/*.$(O) || break;done $(RANLIB) gfx$(A) #TODO: @@ -76,4 +78,4 @@ test6: SWF.$(SLEXT) clean: rm -f *.o *.obj *.so mypython swfpython -.PHONY: test,test1,test2 +.PHONY: test test1 test2 static all exe