#CFLAGS = -DNDEBUG -g -O3 -Wall -Wstrict-prototypes -fPIC \ # -I/usr/local/include/python2.3 CFLAGS = -DNDEBUG -I/usr/local/include/python2.3 all: python_201_pyrex_primes.so python_201_pyrex_primes.so: python_201_pyrex_primes.o gcc -shared python_201_pyrex_primes.o -o python_201_pyrex_primes.so python_201_pyrex_primes.o: python_201_pyrex_primes.c gcc -c ${CFLAGS} python_201_pyrex_primes.c -o python_201_pyrex_primes.o python_201_pyrex_primes.c: python_201_pyrex_primes.pyx pyrexc python_201_pyrex_primes.pyx clean: rm -f python_201_pyrex_primes.so python_201_pyrex_primes.o \ python_201_pyrex_primes.c