From: George Tasker Date: Tue, 13 Mar 2001 21:47:58 +0000 (+0000) Subject: Added the code to copy setup0.h to setup.h if setup.h does not exist (due to checkout... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/8816486e250c27aa44c9b6e6e61611e8617ad035?ds=inline Added the code to copy setup0.h to setup.h if setup.h does not exist (due to checkout from CVS). The tmake template is also being updated now for when we do the next tmake generation of the makefile git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9514 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/makefile.vc b/src/msw/makefile.vc index cc623a4487..297b4118c6 100644 --- a/src/msw/makefile.vc +++ b/src/msw/makefile.vc @@ -370,7 +370,12 @@ HTMLOBJS = ..\html\$D\helpctrl.obj \ OBJECTS = $(COMMONOBJS) $(GENERICOBJS) $(MSWOBJS) $(HTMLOBJS) # Normal, static library -all: dirs $(DUMMYOBJ) $(OBJECTS) $(PERIPH_TARGET) png zlib xpm jpeg tiff $(LIBTARGET) +all: setuph dirs $(DUMMYOBJ) $(OBJECTS) $(PERIPH_TARGET) png zlib xpm jpeg tiff $(LIBTARGET) + +setuph: + cd $(WXDIR)\include\wx\msw + if not exist setup.h copy setup0.h setup.h + cd $(WXDIR)\src\msw dirs: $(MSWDIR)\$D $(COMMDIR)\$D $(GENDIR)\$D $(OLEDIR)\$D $(HTMLDIR)\$D