diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2005-08-11 15:00:58 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2005-08-11 15:00:58 +0000 |
commit | 214bb7279f354adf1344376e26465046fc2581ce (patch) | |
tree | 0e0f32a27f274e4d6a09352146c7507472313dc5 /externals/grill/py/build | |
parent | e1be380510a42f13ce1fd55a29705aaf9e8c8da8 (diff) |
oops, include libraries for editing the scripts
some optimizations and py reload fix
open editor for module file on "edit" message (or click)
open editor for script under OS X
added cygwin support
svn path=/trunk/; revision=3417
Diffstat (limited to 'externals/grill/py/build')
-rw-r--r-- | externals/grill/py/build/gnumake-win-cygwin.inc | 2 | ||||
-rw-r--r-- | externals/grill/py/build/nmake-win-msvc.inc | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/externals/grill/py/build/gnumake-win-cygwin.inc b/externals/grill/py/build/gnumake-win-cygwin.inc index 39f590bf..70cfca17 100644 --- a/externals/grill/py/build/gnumake-win-cygwin.inc +++ b/externals/grill/py/build/gnumake-win-cygwin.inc @@ -1,7 +1,7 @@ DEFS += -DPY_EXPORTS INCPATH += -I$(PYTHONPATH)/include LIBPATH += -L$(PYTHONPATH)/libs -LIBS += -lpython$(PYTHONVER) +LIBS += -lpython$(PYTHONVER) -lshell32 ifdef PY_NUMARRAY DEFS += -DPY_NUMARRAY diff --git a/externals/grill/py/build/nmake-win-msvc.inc b/externals/grill/py/build/nmake-win-msvc.inc index e9334065..0d4fa162 100644 --- a/externals/grill/py/build/nmake-win-msvc.inc +++ b/externals/grill/py/build/nmake-win-msvc.inc @@ -1,6 +1,7 @@ DEFS = $(DEFS) /DPY_EXPORTS INCPATH=/I$(PYTHONPATH)\include LIBPATH=/LIBPATH:$(PYTHONPATH)\libs +LIBS=$(LIBS) shell32.lib !ifdef PY_NUMARRAY DEFS = $(DEFS) /DPY_NUMARRAY |