bbdb3007c7
2004/10/31 10:48:50 pjanik 1.1.78.2: Fix DOS line endings. 2004/09/30 20:33:17 jbu 1.1.78.1: #i32901#+#i31866# upgrade to version 2.3.4, new build env on windows using nmake instead of msdev
14 lines
405 B
Makefile
14 lines
405 B
Makefile
# when you want to change the python version, you must update the d.lst
|
|
# in the python project accordingly !!!
|
|
PYMAJOR=2
|
|
PYMINOR=3
|
|
PYMICRO=4
|
|
PYVERSION=$(PYMAJOR).$(PYMINOR).$(PYMICRO)
|
|
|
|
.IF "$(GUI)" == "UNX"
|
|
PY_FULL_DLL_NAME=libpython$(PYMAJOR).$(PYMINOR).so.1.0
|
|
PYTHONLIB=-lpython$(PYMAJOR).$(PYMINOR)
|
|
.ELSE
|
|
PY_FULL_DLL_NAME=python$(PYMAJOR)$(PYMINOR).dll
|
|
PYTHONLIB=python$(PYMAJOR)$(PYMINOR).lib
|
|
.ENDIF
|