[pywin32-checkins] pywin32/Pythonwin/Scintilla makefile_pythonwin,1.3,1.4
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <mha...@us...> - 2003-11-29 06:56:18
|
Update of /cvsroot/pywin32/pywin32/Pythonwin/Scintilla In directory sc8-pr-cvs1:/tmp/cvs-serv26467 Modified Files: makefile_pythonwin Log Message: Allow the output directories to be specified on the command-line, which is what the distutils script does! Index: makefile_pythonwin =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/Scintilla/makefile_pythonwin,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** makefile_pythonwin 2 Aug 2002 12:53:10 -0000 1.3 --- makefile_pythonwin 29 Nov 2003 06:56:15 -0000 1.4 *************** *** 7,14 **** !IFDEF DEBUG DIR_O = ..\Build\Temp\Scintilla\Debug - SCINTILLA_DLL = ..\..\Build\Scintilla_d.dll !ELSE DIR_O = ..\Build\Temp\Scintilla\Release - SCINTILLA_DLL = ..\..\Build\Scintilla.dll !ENDIF --- 7,12 ---- *************** *** 18,23 **** --- 16,31 ---- # Relative to the subdirectory for the sub-makefile + !ifndef SUB_DIR_BIN SUB_DIR_BIN = ..\$(DIR_BIN) + !endif + !ifndef SUB_DIR_O SUB_DIR_O=..\$(DIR_O) + !endif + + !IFDEF DEBUG + SCINTILLA_DLL = $(SUB_DIR_BIN)\Scintilla_d.dll + !ELSE + SCINTILLA_DLL = $(SUB_DIR_BIN)\Scintilla.dll + !ENDIF all: ..\pywin\scintilla\scintillacon.py Scintilla |