CFLAGS = -I/usr/local/include/python2.3 all: _MyLibrary.so _MyLibrary.so: MyLibrary.o MyLibrary_wrap.o gcc -shared MyLibrary.o MyLibrary_wrap.o -o _MyLibrary.so MyLibrary.o: MyLibrary.c gcc -c MyLibrary.c -o MyLibrary.o MyLibrary_wrap.o: MyLibrary_wrap.c gcc -c ${CFLAGS} MyLibrary_wrap.c -o MyLibrary_wrap.o MyLibrary_wrap.c: MyLibrary.i swig -python MyLibrary.i clean: rm -f MyLibrary.py MyLibrary.o MyLibrary_wrap.c \ MyLibrary_wrap.o _MyLibrary.so