more horizontal refactoring
[swftools.git] / lib / python / Makefile.in
index e3c5534..0c8fb15 100644 (file)
@@ -4,6 +4,7 @@ top_srcdir = @top_srcdir@
 include ../../Makefile.common
 
 all: SWF.$(SLEXT) gfx.$(SLEXT)
+static: SWF$(A) gfx$(A)
 exe: mypython$(E) swfpython$(E) testmem$(E)
 
 primitives.$(O): primitives.c primitives.h
@@ -28,11 +29,22 @@ gfx.$(O): gfx.c
 SWF.$(O): SWF.c pyutils.h primitives.h taglist.h
        $(C) -Wall -Wno-unused -fPIC $(PYTHON_INCLUDES) -c SWF.c -o SWF.$(O)
 
-SWF.$(SLEXT): SWF.$(O) taglist.$(O) tag.$(O) image.$(O) tags.$(O) tagmap.$(O) action.$(O) primitives.$(O) pyutils.$(O) ../librfxswf$(A) ../png.$(O) Makefile
-       $(L) -g $(SHARED) SWF.$(O) tagmap.$(O) taglist.$(O) tag.$(O) image.$(O) tags.$(O) action.$(O) primitives.$(O) pyutils.$(O)  -o SWF.$(SLEXT) $(PYTHON_LIB) ../librfxswf$(A) ../png.$(O) $(LIBS)
+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)
+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.$(SLEXT): gfx.$(O) ../libpdf$(A) ../devices/swf.$(O) ../librfxswf$(A) ../libgfx$(A) ../libbase$(A) ../art/libart$(A) Makefile
-       $(L) -g $(SHARED) gfx.$(O) -o gfx.$(SLEXT) ../libpdf$(A) ../devices/swf.$(O) ../librfxswf$(A) ../libgfx$(A) ../libbase$(A) ../art/libart$(A) $(PYTHON_LIB) $(LIBS)
+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 -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:
 install:
@@ -66,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