X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fpython%2FMakefile.in;h=c0e0bc1f0c827e265cd05192c98b7dec052c3e83;hb=5d23cf0d32a9e907fc641db4a2f3946f0645ed3a;hp=75240c6785b59963531c864548d96ded61c8d040;hpb=dbf4023f60d7e0627bdc81941e4dddcbd9e77986;p=swftools.git diff --git a/lib/python/Makefile.in b/lib/python/Makefile.in index 75240c6..c0e0bc1 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: mypython swfpython SWF.so testmem +all: SWF.$(SLEXT) +exe: mypython$(E) swfpython$(E) testmem$(E) primitives.o: primitives.c primitives.h $(C) -Wall -Wno-unused -fPIC $(PYTHON_INCLUDES) -c primitives.c -o primitives.o @@ -25,35 +26,37 @@ pyutils.o: pyutils.c pyutils.h SWF.o: SWF.c pyutils.h primitives.h taglist.h $(C) -Wall -Wno-unused -fPIC $(PYTHON_INCLUDES) -c SWF.c -o SWF.o -SWF.so: SWF.o taglist.o tag.o image.o tags.o tagmap.o action.o primitives.o pyutils.o ../librfxswf.a Makefile - $(L) -g -shared SWF.o tagmap.o taglist.o tag.o image.o tags.o action.o primitives.o pyutils.o -o SWF.so $(PYTHON_LIB) ../librfxswf.a $(LIBS) +SWF.$(SLEXT): SWF.o taglist.o tag.o image.o tags.o tagmap.o action.o primitives.o pyutils.o ../librfxswf.a 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 $(LIBS) -mypython: mypython.c Makefile - $(L) -Wno-redundant-decls -g $(PYTHON_INCLUDES) mypython.c -o mypython $(PYTHON_LIB) +#TODO: +install: -swfpython: swfpython.c Makefile primitives.o tagmap.o taglist.o tag.o tags.o action.o pyutils.o SWF.o - $(L) -Wno-redundant-decls -g $(PYTHON_INCLUDES) swfpython.c -o swfpython $(PYTHON_LIB) ../librfxswf.a $(LIBS) - -testmem: testmem.c Makefile - $(L) $(PYTHON_INCLUDES) testmem.c -o testmem $(PYTHON_LIB) $(LIBS) +# for debugging: +mypython$(E): mypython.c Makefile + $(L) -Wno-redundant-decls -g $(PYTHON_INCLUDES) mypython.c -o mypython$(E) $(PYTHON_LIB) +swfpython$(E): swfpython.c Makefile primitives.o tagmap.o taglist.o tag.o tags.o action.o pyutils.o SWF.o + $(L) -Wno-redundant-decls -g $(PYTHON_INCLUDES) swfpython.c -o swfpython$(E) $(PYTHON_LIB) ../librfxswf.a $(LIBS) +testmem$(E): testmem.c Makefile + $(L) $(PYTHON_INCLUDES) testmem.c -o testmem$(E) $(PYTHON_LIB) $(LIBS) test: test6 -test1: SWF.so +test1: SWF.$(SLEXT) ./test_create.py swfdump -p tmp/test.swf -test2: SWF.so +test2: SWF.$(SLEXT) ./test_combine.py swfdump -u -p tmp/combined.swf -test3: SWF.so +test3: SWF.$(SLEXT) ./test_simple.py -test4: SWF.so +test4: SWF.$(SLEXT) ./test_movie.py swfdump -u -p tmp/test.swf -test5: SWF.so +test5: SWF.$(SLEXT) ./test_image.py swfdump -u -p tmp/test.swf -test6: SWF.so +test6: SWF.$(SLEXT) ./test_sprite.py clean: rm -f *.o *.so mypython swfpython