fdda5d4300
Pyrex is a language specially designed for writing Python extension modules. It's designed to bridge the gap between the nice, high-level, easy-to-use world of Python and the messy, low-level world of C.
19 lines
480 B
Plaintext
19 lines
480 B
Plaintext
$OpenBSD: patch-Demos_Makefile,v 1.1.1.1 2006/11/16 01:09:38 alek Exp $
|
|
--- Demos/Makefile.orig Sun Nov 12 22:04:13 2006
|
|
+++ Demos/Makefile Sun Nov 12 22:04:14 2006
|
|
@@ -1,10 +1,10 @@
|
|
all:
|
|
- python Setup.py build_ext --inplace
|
|
+ ${PYTHON} Setup.py build_ext --inplace
|
|
|
|
test: all
|
|
- python run_primes.py 20
|
|
- python run_numeric_demo.py
|
|
- python run_spam.py
|
|
+ ${PYTHON} run_primes.py 20
|
|
+ ${PYTHON} run_numeric_demo.py
|
|
+ ${PYTHON} run_spam.py
|
|
cd callback; $(MAKE) test
|
|
|
|
clean:
|