[Cython] [PATCH] Demos: pyrexc -> cython
Kirill Smelkov
kirr at landau.phys.spbu.ru
Fri Feb 1 12:14:25 CET 2008
# HG changeset patch
# User Kirill Smelkov <kirr at landau.phys.spbu.ru>
# Date 1201862775 -10800
# Node ID bcc813057f913c757d2629649b35ae999629e5d5
# Parent be19ff60769b44621e4857435897a635026636fb
Demos: pyrexc -> cython
diff --git a/Demos/Makefile.nodistutils b/Demos/Makefile.nodistutils
--- 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
--- a/Demos/embed/Makefile
+++ b/Demos/embed/Makefile
@@ -9,7 +9,7 @@ PYLIB = -L$(PYARCH)/lib/python$(PYVERSIO
-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
--- a/Demos/embed/Makefile.msc
+++ b/Demos/embed/Makefile.msc
@@ -8,7 +8,7 @@ CFLAGS = $(PYINCLUDE) /Ox /W3 /GX -nolog
.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
--- a/Demos/embed/Makefile.unix
+++ b/Demos/embed/Makefile.unix
@@ -9,7 +9,7 @@ PYLIB = -L$(PYARCH)/lib/python$(PYVERSIO
-ldl -lpthread -lutil -lm
%.c: %.pyx
- ../../bin/pyrexc $<
+ ../../bin/cython $<
%.o: %.c
gcc -c -fPIC $(PYINCLUDE) $<
More information about the Cython-dev
mailing list