From: Kirill Smelkov Date: Fri, 1 Feb 2008 10:46:15 +0000 (+0300) Subject: Demos: pyrexc -> cython X-Git-Tag: 0.9.6.14~30 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=bb088c2a235384a029b4b3f05c4898e222cf0d0e;p=cython.git Demos: pyrexc -> cython --- diff --git a/Demos/Makefile.nodistutils b/Demos/Makefile.nodistutils index d648f849..8b0c9c4b 100644 --- a/Demos/Makefile.nodistutils +++ b/Demos/Makefile.nodistutils @@ -4,7 +4,7 @@ PYINCLUDE = \ -I$(PYHOME)/$(ARCH)/include/python2.2 %.c: %.pyx - ../bin/pyrexc $< + ../bin/cython $< %.o: %.c gcc -c -fPIC $(PYINCLUDE) $< diff --git a/Demos/embed/Makefile b/Demos/embed/Makefile index c8c7dbeb..cd20f004 100644 --- a/Demos/embed/Makefile +++ b/Demos/embed/Makefile @@ -9,7 +9,7 @@ PYLIB = -L$(PYARCH)/lib/python$(PYVERSION)/config \ -ldl -lpthread -lutil -lm %.c: %.pyx - ../../bin/pyrexc $< + ../../bin/cython $< %.o: %.c gcc -c -fPIC $(PYINCLUDE) $< diff --git a/Demos/embed/Makefile.msc b/Demos/embed/Makefile.msc index 37114c73..8143c68e 100644 --- a/Demos/embed/Makefile.msc +++ b/Demos/embed/Makefile.msc @@ -8,7 +8,7 @@ CFLAGS = $(PYINCLUDE) /Ox /W3 /GX -nologo .SUFFIXES: .exe .dll .obj .c .cpp .pyx .pyx.c: - $(PYHOME)\Python.exe ../../pyrexc.py $< + $(PYHOME)\Python.exe ../../cython.py $< all: main.exe diff --git a/Demos/embed/Makefile.unix b/Demos/embed/Makefile.unix index c8c7dbeb..cd20f004 100644 --- a/Demos/embed/Makefile.unix +++ b/Demos/embed/Makefile.unix @@ -9,7 +9,7 @@ PYLIB = -L$(PYARCH)/lib/python$(PYVERSION)/config \ -ldl -lpthread -lutil -lm %.c: %.pyx - ../../bin/pyrexc $< + ../../bin/cython $< %.o: %.c gcc -c -fPIC $(PYINCLUDE) $<