several fixes
[swftools.git] / lib / python / Makefile
1 all: mypython SWF.so
2
3 LIB=-L/usr/lib/python2.2/config/ -lpython2.2
4 I=-I/usr/include/python2.2
5
6 primitives.o: primitives.c primitives.h
7         gcc -g -O2 -Wall -Wno-unused -fPIC $(I) -c primitives.c -o primitives.o
8 tagmap.o: tagmap.c tagmap.h
9         gcc -g -O2 -Wall -Wno-unused -fPIC $(I) -c tagmap.c -o tagmap.o
10 taglist.o: taglist.c taglist.h tagmap.h tag.h
11         gcc -g -O2 -Wall -Wno-unused -fPIC $(I) -c taglist.c -o taglist.o
12 tag.o: tag.c tag.h tagmap.h
13         gcc -g -O2 -Wall -Wno-unused -fPIC $(I) -c tag.c -o tag.o
14 action.o: action.c action.h
15         gcc -g -O2 -Wall -Wno-unused -fPIC $(I) -c action.c -o action.o
16 pyutils.o: pyutils.c pyutils.h
17         gcc -g -O2 -Wall -Wno-unused -fPIC $(I) -c pyutils.c -o pyutils.o
18
19 SWF.o: SWF.c pyutils.h primitives.h taglist.h
20         gcc -g -O2 -Wall -Wno-unused -fPIC $(I) -c SWF.c -o SWF.o
21
22 SWF.so: SWF.o taglist.o tag.o tagmap.o action.o primitives.o pyutils.o ../librfxswf.a
23         gcc -shared SWF.o tagmap.o taglist.o tag.o action.o primitives.o pyutils.o  -o SWF.so ../librfxswf.a -ljpeg -lz -lt1 -lfreetype
24
25 mypython: mypython.c
26         gcc -g -I/usr/include/python2.2 mypython.c -o mypython $(LIB) -ldl -lm -lpthread -lutil
27
28 test: SWF.so
29         #./test_create.py
30         #swfdump -p test/test.swf
31         ./test_combine.py
32         swfdump -p tmp/combined.swf
33 clean:
34         rm *.o *.so mypython
35
36 .PHONY: test