diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2004-12-19 05:10:46 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2004-12-19 05:10:46 +0000 |
commit | 1a8a5f119d8dc4e8b8f54867f419a2244468d4ef (patch) | |
tree | b9cb67f612c8a11428d764f6fae10f41161b6f74 /externals/grill/py/build | |
parent | 1b56c59a0aec948ff76dac8a4a99be34d24f163f (diff) |
updated make system
svn path=/trunk/; revision=2414
Diffstat (limited to 'externals/grill/py/build')
-rw-r--r-- | externals/grill/py/build/config-lnx.def | 5 | ||||
-rw-r--r-- | externals/grill/py/build/config-mac.def | 1 | ||||
-rw-r--r-- | externals/grill/py/build/config-win.def | 2 | ||||
-rw-r--r-- | externals/grill/py/build/makefile-lnx-gcc.inc | 2 | ||||
-rw-r--r-- | externals/grill/py/build/makefile-mac-gcc.inc | 4 | ||||
-rw-r--r-- | externals/grill/py/build/makefile-win-msvc.inc | 2 | ||||
-rw-r--r-- | externals/grill/py/build/package.txt | 11 |
7 files changed, 27 insertions, 0 deletions
diff --git a/externals/grill/py/build/config-lnx.def b/externals/grill/py/build/config-lnx.def new file mode 100644 index 00000000..a93932e0 --- /dev/null +++ b/externals/grill/py/build/config-lnx.def @@ -0,0 +1,5 @@ +# what is the base prefix of the Python installation?
+PYTHONPREFIX=/usr
+
+# which Python version do you want to compile against?
+PYTHONVERSION=2.3
diff --git a/externals/grill/py/build/config-mac.def b/externals/grill/py/build/config-mac.def new file mode 100644 index 00000000..be94b713 --- /dev/null +++ b/externals/grill/py/build/config-mac.def @@ -0,0 +1 @@ +# nothing to adjust!
\ No newline at end of file diff --git a/externals/grill/py/build/config-win.def b/externals/grill/py/build/config-win.def new file mode 100644 index 00000000..0a3a3f47 --- /dev/null +++ b/externals/grill/py/build/config-win.def @@ -0,0 +1,2 @@ +# where is the Python installation?
+PYTHONPATH=c:\programme\prog\python24
diff --git a/externals/grill/py/build/makefile-lnx-gcc.inc b/externals/grill/py/build/makefile-lnx-gcc.inc new file mode 100644 index 00000000..f49715fd --- /dev/null +++ b/externals/grill/py/build/makefile-lnx-gcc.inc @@ -0,0 +1,2 @@ +INCPATH += -I$(PYTHONPREFIX)/include/python$(PYTHONVERSION)
+LIBS += -lpython$(PYTHONVERSION)
diff --git a/externals/grill/py/build/makefile-mac-gcc.inc b/externals/grill/py/build/makefile-mac-gcc.inc new file mode 100644 index 00000000..0e510dec --- /dev/null +++ b/externals/grill/py/build/makefile-mac-gcc.inc @@ -0,0 +1,4 @@ +# + +LIBS += -framework Python
+ diff --git a/externals/grill/py/build/makefile-win-msvc.inc b/externals/grill/py/build/makefile-win-msvc.inc new file mode 100644 index 00000000..33ec5f8e --- /dev/null +++ b/externals/grill/py/build/makefile-win-msvc.inc @@ -0,0 +1,2 @@ +INCPATH=/I$(PYTHONPATH)\include
+LIBPATH=/LIBPATH:$(PYTHONPATH)\libs
diff --git a/externals/grill/py/build/package.txt b/externals/grill/py/build/package.txt new file mode 100644 index 00000000..459b8708 --- /dev/null +++ b/externals/grill/py/build/package.txt @@ -0,0 +1,11 @@ +NAME=py
+
+THREADED=1
+HAVECONFIG=1
+HAVEMAKE=1
+
+SRCDIR=source
+
+SRCS= main.cpp py.cpp pyext.cpp modmeth.cpp clmeth.cpp register.cpp pyargs.cpp bound.cpp
+
+HDRS= main.h pyext.h
|