From bb088c2a235384a029b4b3f05c4898e222cf0d0e Mon Sep 17 00:00:00 2001 From: Kirill Smelkov Date: Fri, 1 Feb 2008 13:46:15 +0300 Subject: [PATCH] Demos: pyrexc -> cython --- Demos/Makefile.nodistutils | 2 +- Demos/embed/Makefile | 2 +- Demos/embed/Makefile.msc | 2 +- Demos/embed/Makefile.unix | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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) $< -- 2.26.2