more horizontal refactoring
[swftools.git] / lib / python / Makefile.in
index 5f61562..0c8fb15 100644 (file)
@@ -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,18 +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/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
-       $(AR) cru gfx$(A) gfx.$(O) $(GFX_DEPS)
+       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:
@@ -75,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