Update of /cvsroot/pywin32/pywin32/AutoDuck
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17185
Modified Files:
common.mak pywin32.mak
Log Message:
Add winxpgui.d, and change the temp directory used
Index: pywin32.mak
===================================================================
RCS file: /cvsroot/pywin32/pywin32/AutoDuck/pywin32.mak,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** pywin32.mak 12 Jun 2004 13:40:33 -0000 1.5
--- pywin32.mak 7 Sep 2004 03:04:16 -0000 1.6
***************
*** 2,6 ****
TARGET = PyWin32
! GENDIR = ..\build\Temp\Help
TITLE = Python for Win32 Extensions Help
DOCHDR = Python for Win32 Extensions Reference
--- 2,8 ----
TARGET = PyWin32
! GENDIR = ..\build\temp.autoduck
! # how to get back to the build dir from $GENDIR
! MYDIR_FROM_GENDIR = ..\..\AutoDuck
TITLE = Python for Win32 Extensions Help
DOCHDR = Python for Win32 Extensions Reference
***************
*** 37,41 ****
$(GENDIR)/win32service.d $(GENDIR)/win32pipe.d $(GENDIR)/win32security.d \
$(GENDIR)/win32process.d $(GENDIR)/wincerapi.d $(GENDIR)/win32gui.d \
! $(GENDIR)/win32inet.d
WIN32COM_SOURCE = \
--- 39,44 ----
$(GENDIR)/win32service.d $(GENDIR)/win32pipe.d $(GENDIR)/win32security.d \
$(GENDIR)/win32process.d $(GENDIR)/wincerapi.d $(GENDIR)/win32gui.d \
! $(GENDIR)/win32inet.d \
! winxpgui.d
WIN32COM_SOURCE = \
Index: common.mak
===================================================================
RCS file: /cvsroot/pywin32/pywin32/AutoDuck/common.mak,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** common.mak 1 Jun 2002 08:21:23 -0000 1.8
--- common.mak 7 Sep 2004 03:04:16 -0000 1.9
***************
*** 32,36 ****
if exist "..\..\..\$(TARGET).hlp" del "..\..\..\$(TARGET).hlp"
move "$(TARGET).hlp" "..\..\..\$(TARGET).hlp"
! cd ..\..\..\AutoDuck
# Generate a topic log file
--- 32,36 ----
if exist "..\..\..\$(TARGET).hlp" del "..\..\..\$(TARGET).hlp"
move "$(TARGET).hlp" "..\..\..\$(TARGET).hlp"
! cd $(MYDIR_FROM_GENDIR)
# Generate a topic log file
|