|
Revision 173, 0.6 kB
(checked in by asterix, 4 years ago)
|
|
Makefile of idle module in common subdirectory
|
| Line | |
|---|
| 1 | from distutils.core import setup, Extension |
|---|
| 2 | |
|---|
| 3 | module1 = Extension( 'idle', |
|---|
| 4 | sources = ['idle.c'], |
|---|
| 5 | # extra_compile_args = ['-W'], |
|---|
| 6 | libraries = ['gtk-x11-2.0','gdk-x11-2.0','glib-2.0','X11','Xext','Xss','atk-1.0'], |
|---|
| 7 | library_dirs = ['/usr/X11R6/lib'], |
|---|
| 8 | include_dirs = ['/usr/include/gtk-2.0', '/usr/include/glib-2.0','/usr/lib/gtk-2.0/include','/usr/lib/glib-2.0/include','/usr/include/pango-1.0','/usr/include/atk-1.0'] |
|---|
| 9 | ) |
|---|
| 10 | |
|---|
| 11 | setup (name = 'idle', version = '1.0', description = 'interface to X11/scrnserver.h', ext_modules = [module1]) |
|---|