Makefile of idle module in common subdirectory

This commit is contained in:
Yann Leboulanger 2004-06-09 14:26:54 +00:00
parent c95a979544
commit 3ca47b0d9c
2 changed files with 7 additions and 1 deletions

6
common/Makefile Normal file
View File

@ -0,0 +1,6 @@
all:
python setup.py build_ext -i
clean:
rm -f *.so
rm -rf build

View File

@ -1,7 +1,7 @@
from distutils.core import setup, Extension
module1 = Extension( 'idle',
sources = ['common/idle.c'],
sources = ['idle.c'],
# extra_compile_args = ['-W'],
libraries = ['gtk-x11-2.0','gdk-x11-2.0','glib-2.0','X11','Xext','Xss','atk-1.0'],
library_dirs = ['/usr/X11R6/lib'],