diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-09-11 20:10:37 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-09-11 20:10:37 +0200 |
commit | 4ccf3421ed6344c51d27b18e73bab62872552e9f (patch) | |
tree | ec3051e57faf4ae72506fef163e5d338d5927a14 | |
parent | fa0939622becdbab1063150a67ef3910dbbedf54 (diff) | |
download | poezio-4ccf3421ed6344c51d27b18e73bab62872552e9f.tar.gz poezio-4ccf3421ed6344c51d27b18e73bab62872552e9f.tar.bz2 poezio-4ccf3421ed6344c51d27b18e73bab62872552e9f.tar.xz poezio-4ccf3421ed6344c51d27b18e73bab62872552e9f.zip |
Build C modules inplace
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 2 insertions, 3 deletions
@@ -6,8 +6,7 @@ LOCALEDIR=$(DATADIR)/locale MANDIR=$(DATADIR)/man all: Makefile - python3 setup.py build - cp build/lib.linux-x86_64-3.2/poopt.cpython-32mu.so src/ + cd src/ && python3 ../setup.py build_ext --inplace clean: find ./ -name \*.pyc -delete @@ -1,7 +1,7 @@ from distutils.core import setup, Extension module_poopt = Extension('poopt', - sources = ['src/pooptmodule.c']) + sources = ['pooptmodule.c']) setup (name = 'BuildLines', version = '0.0.1', |