From: Francesco M. <fr...@us...> - 2006-01-23 19:38:46
|
Update of /cvsroot/wxlua/wxLua/build/msw In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24398/build/msw Modified Files: makefile.bcc makefile.gcc makefile.vc makefile.wat Log Message: updated bakefiles Index: makefile.vc =================================================================== RCS file: /cvsroot/wxlua/wxLua/build/msw/makefile.vc,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** makefile.vc 25 Nov 2005 20:04:35 -0000 1.9 --- makefile.vc 23 Jan 2006 19:38:29 -0000 1.10 *************** *** 1,5 **** # ========================================================================= # This makefile was generated by ! # Bakefile 0.1.9 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= --- 1,5 ---- # ========================================================================= # This makefile was generated by ! # Bakefile 0.2.0 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= *************** *** 15,28 **** # Use DLL build of wx library to use? [0,1] WX_SHARED = 0 # Compile Unicode build of wxWidgets? [0,1] WX_UNICODE = 0 # Use debug build of wxWidgets (define __WXDEBUG__)? [0,1] WX_DEBUG = 1 # Version of the wx library to build against. ! WX_VERSION = 26 # Does the wxLua utilities should be compiled ? [0,1] --- 15,38 ---- # Use DLL build of wx library to use? [0,1] + # 1 - DLL WX_SHARED = 0 # Compile Unicode build of wxWidgets? [0,1] + # 1 - Unicode WX_UNICODE = 0 # Use debug build of wxWidgets (define __WXDEBUG__)? [0,1] + # 0 - Release + # 1 - Debug WX_DEBUG = 1 # Version of the wx library to build against. ! WX_VERSION = 27 ! ! # Should the wxLua utilities should be compiled ? [0,1] ! USE_UTIL = 1 ! ! # Should the wxLua applications be compiled ? [0,1] ! USE_APPS = 1 # Does the wxLua utilities should be compiled ? [0,1] *************** *** 41,50 **** USE_WXLUAEDITAPP = 0 - # Does the wxLua utilities should be compiled ? [0,1] - USE_UTIL = 1 - - # Should the wxLua applications be compiled ? [0,1] - USE_APPS = 1 - --- 51,54 ---- *************** *** 58,70 **** CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" WX_DIR="$(WX_DIR)" \ WX_SHARED="$(WX_SHARED)" WX_UNICODE="$(WX_UNICODE)" WX_DEBUG="$(WX_DEBUG)" \ ! WX_VERSION="$(WX_VERSION)" USE_BIN2C="$(USE_BIN2C)" \ ! USE_WXLUADEBUGLIB="$(USE_WXLUADEBUGLIB)" \ USE_WXLUASOCKETLIB="$(USE_WXLUASOCKETLIB)" \ WXLUASETUP_DIR="$(WXLUASETUP_DIR)" WXLUABINDLIB_DIR="$(WXLUABINDLIB_DIR)" \ ! USE_WXLUAAPP="$(USE_WXLUAAPP)" USE_WXLUAEDITAPP="$(USE_WXLUAEDITAPP)" \ ! USE_UTIL="$(USE_UTIL)" USE_APPS="$(USE_APPS)" ### Conditionally set variables: ### !if "$(USE_UTIL)" == "1" __utils___depname = sub_utils --- 62,82 ---- CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" WX_DIR="$(WX_DIR)" \ WX_SHARED="$(WX_SHARED)" WX_UNICODE="$(WX_UNICODE)" WX_DEBUG="$(WX_DEBUG)" \ ! WX_VERSION="$(WX_VERSION)" USE_UTIL="$(USE_UTIL)" USE_APPS="$(USE_APPS)" \ ! USE_BIN2C="$(USE_BIN2C)" USE_WXLUADEBUGLIB="$(USE_WXLUADEBUGLIB)" \ USE_WXLUASOCKETLIB="$(USE_WXLUASOCKETLIB)" \ WXLUASETUP_DIR="$(WXLUASETUP_DIR)" WXLUABINDLIB_DIR="$(WXLUABINDLIB_DIR)" \ ! USE_WXLUAAPP="$(USE_WXLUAAPP)" USE_WXLUAEDITAPP="$(USE_WXLUAEDITAPP)" ### Conditionally set variables: ### + !if "$(WX_DEBUG)" == "1" && "$(WX_UNICODE)" == "1" + WXLIBPOSTFIX = ud + !endif + !if "$(WX_DEBUG)" == "1" && "$(WX_UNICODE)" == "0" + WXLIBPOSTFIX = d + !endif + !if "$(WX_DEBUG)" == "0" && "$(WX_UNICODE)" == "1" + WXLIBPOSTFIX = u + !endif !if "$(USE_UTIL)" == "1" __utils___depname = sub_utils *************** *** 75,78 **** --- 87,94 ---- + all: msvc$(WXLIBPOSTFIX) + msvc$(WXLIBPOSTFIX): + -if not exist msvc$(WXLIBPOSTFIX) mkdir msvc$(WXLIBPOSTFIX) + ### Targets: ### *************** *** 80,86 **** clean: ! -if exist .\*.obj del .\*.obj ! -if exist .\*.res del .\*.res ! -if exist .\*.pch del .\*.pch cd ..\..\util\build\msw $(MAKE) -f makefile.vc $(MAKEARGS) clean --- 96,102 ---- clean: ! -if exist msvc$(WXLIBPOSTFIX)\*.obj del msvc$(WXLIBPOSTFIX)\*.obj ! -if exist msvc$(WXLIBPOSTFIX)\*.res del msvc$(WXLIBPOSTFIX)\*.res ! -if exist msvc$(WXLIBPOSTFIX)\*.pch del msvc$(WXLIBPOSTFIX)\*.pch cd ..\..\util\build\msw $(MAKE) -f makefile.vc $(MAKEARGS) clean Index: makefile.bcc =================================================================== RCS file: /cvsroot/wxlua/wxLua/build/msw/makefile.bcc,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** makefile.bcc 25 Nov 2005 20:04:34 -0000 1.8 --- makefile.bcc 23 Jan 2006 19:38:29 -0000 1.9 *************** *** 1,5 **** # ========================================================================= # This makefile was generated by ! # Bakefile 0.1.9 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= --- 1,5 ---- # ========================================================================= # This makefile was generated by ! # Bakefile 0.2.0 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= *************** *** 72,76 **** # Version of the wx library to build against. !ifndef WX_VERSION ! WX_VERSION = 26 !endif --- 72,86 ---- # Version of the wx library to build against. !ifndef WX_VERSION ! WX_VERSION = 27 ! !endif ! ! # Should the wxLua utilities should be compiled ? [0,1] ! !ifndef USE_UTIL ! USE_UTIL = 1 ! !endif ! ! # Should the wxLua applications be compiled ? [0,1] ! !ifndef USE_APPS ! USE_APPS = 1 !endif *************** *** 110,123 **** !endif - # Does the wxLua utilities should be compiled ? [0,1] - !ifndef USE_UTIL - USE_UTIL = 1 - !endif - - # Should the wxLua applications be compiled ? [0,1] - !ifndef USE_APPS - USE_APPS = 1 - !endif - --- 120,123 ---- *************** *** 132,145 **** -DWX_DIR="$(WX_DIR)" -DWX_SHARED="$(WX_SHARED)" \ -DWX_UNICODE="$(WX_UNICODE)" -DWX_DEBUG="$(WX_DEBUG)" \ ! -DWX_VERSION="$(WX_VERSION)" -DUSE_BIN2C="$(USE_BIN2C)" \ -DUSE_WXLUADEBUGLIB="$(USE_WXLUADEBUGLIB)" \ -DUSE_WXLUASOCKETLIB="$(USE_WXLUASOCKETLIB)" \ -DWXLUASETUP_DIR="$(WXLUASETUP_DIR)" \ -DWXLUABINDLIB_DIR="$(WXLUABINDLIB_DIR)" -DUSE_WXLUAAPP="$(USE_WXLUAAPP)" \ ! -DUSE_WXLUAEDITAPP="$(USE_WXLUAEDITAPP)" -DUSE_UTIL="$(USE_UTIL)" \ ! -DUSE_APPS="$(USE_APPS)" ### Conditionally set variables: ### !if "$(USE_UTIL)" == "1" __utils___depname = utils --- 132,154 ---- -DWX_DIR="$(WX_DIR)" -DWX_SHARED="$(WX_SHARED)" \ -DWX_UNICODE="$(WX_UNICODE)" -DWX_DEBUG="$(WX_DEBUG)" \ ! -DWX_VERSION="$(WX_VERSION)" -DUSE_UTIL="$(USE_UTIL)" \ ! -DUSE_APPS="$(USE_APPS)" -DUSE_BIN2C="$(USE_BIN2C)" \ -DUSE_WXLUADEBUGLIB="$(USE_WXLUADEBUGLIB)" \ -DUSE_WXLUASOCKETLIB="$(USE_WXLUASOCKETLIB)" \ -DWXLUASETUP_DIR="$(WXLUASETUP_DIR)" \ -DWXLUABINDLIB_DIR="$(WXLUABINDLIB_DIR)" -DUSE_WXLUAAPP="$(USE_WXLUAAPP)" \ ! -DUSE_WXLUAEDITAPP="$(USE_WXLUAEDITAPP)" ### Conditionally set variables: ### + !if "$(WX_DEBUG)" == "1" && "$(WX_UNICODE)" == "1" + WXLIBPOSTFIX = ud + !endif + !if "$(WX_DEBUG)" == "1" && "$(WX_UNICODE)" == "0" + WXLIBPOSTFIX = d + !endif + !if "$(WX_DEBUG)" == "0" && "$(WX_UNICODE)" == "1" + WXLIBPOSTFIX = u + !endif !if "$(USE_UTIL)" == "1" __utils___depname = utils *************** *** 150,153 **** --- 159,166 ---- + all: borland$(WXLIBPOSTFIX) + borland$(WXLIBPOSTFIX): + -if not exist borland$(WXLIBPOSTFIX) mkdir borland$(WXLIBPOSTFIX) + ### Targets: ### *************** *** 155,194 **** clean: ! -if exist .\*.obj del .\*.obj ! -if exist .\*.res del .\*.res ! -if exist .\*.csm del .\*.csm ! @echo cd ..\..\util\build\msw >utils.bat ! @echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>utils.bat ! call utils.bat ! @del utils.bat ! @echo cd ..\..\modules\build\msw >modules.bat ! @echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>modules.bat ! call modules.bat ! @del modules.bat ! @echo cd ..\..\apps\build\msw >apps.bat ! @echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>apps.bat ! call apps.bat ! @del apps.bat !if "$(USE_UTIL)" == "1" utils: ! @echo cd ..\..\util\build\msw >utils.bat ! @echo $(MAKE) -f makefile.bcc $(MAKEARGS) >>utils.bat ! call utils.bat ! @del utils.bat !endif modules: ! @echo cd ..\..\modules\build\msw >modules.bat ! @echo $(MAKE) -f makefile.bcc $(MAKEARGS) >>modules.bat ! call modules.bat ! @del modules.bat !if "$(USE_APPS)" == "1" apps: ! @echo cd ..\..\apps\build\msw >apps.bat ! @echo $(MAKE) -f makefile.bcc $(MAKEARGS) >>apps.bat ! call apps.bat ! @del apps.bat !endif --- 168,207 ---- clean: ! -if exist borland$(WXLIBPOSTFIX)\*.obj del borland$(WXLIBPOSTFIX)\*.obj ! -if exist borland$(WXLIBPOSTFIX)\*.res del borland$(WXLIBPOSTFIX)\*.res ! -if exist borland$(WXLIBPOSTFIX)\*.csm del borland$(WXLIBPOSTFIX)\*.csm ! @echo cd ..\..\util\build\msw >borland$(WXLIBPOSTFIX)\utils.bat ! @echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>borland$(WXLIBPOSTFIX)\utils.bat ! call borland$(WXLIBPOSTFIX)\utils.bat ! @del borland$(WXLIBPOSTFIX)\utils.bat ! @echo cd ..\..\modules\build\msw >borland$(WXLIBPOSTFIX)\modules.bat ! @echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>borland$(WXLIBPOSTFIX)\modules.bat ! call borland$(WXLIBPOSTFIX)\modules.bat ! @del borland$(WXLIBPOSTFIX)\modules.bat ! @echo cd ..\..\apps\build\msw >borland$(WXLIBPOSTFIX)\apps.bat ! @echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>borland$(WXLIBPOSTFIX)\apps.bat ! call borland$(WXLIBPOSTFIX)\apps.bat ! @del borland$(WXLIBPOSTFIX)\apps.bat !if "$(USE_UTIL)" == "1" utils: ! @echo cd ..\..\util\build\msw >borland$(WXLIBPOSTFIX)\utils.bat ! @echo $(MAKE) -f makefile.bcc $(MAKEARGS) >>borland$(WXLIBPOSTFIX)\utils.bat ! call borland$(WXLIBPOSTFIX)\utils.bat ! @del borland$(WXLIBPOSTFIX)\utils.bat !endif modules: ! @echo cd ..\..\modules\build\msw >borland$(WXLIBPOSTFIX)\modules.bat ! @echo $(MAKE) -f makefile.bcc $(MAKEARGS) >>borland$(WXLIBPOSTFIX)\modules.bat ! call borland$(WXLIBPOSTFIX)\modules.bat ! @del borland$(WXLIBPOSTFIX)\modules.bat !if "$(USE_APPS)" == "1" apps: ! @echo cd ..\..\apps\build\msw >borland$(WXLIBPOSTFIX)\apps.bat ! @echo $(MAKE) -f makefile.bcc $(MAKEARGS) >>borland$(WXLIBPOSTFIX)\apps.bat ! call borland$(WXLIBPOSTFIX)\apps.bat ! @del borland$(WXLIBPOSTFIX)\apps.bat !endif Index: makefile.wat =================================================================== RCS file: /cvsroot/wxlua/wxLua/build/msw/makefile.wat,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** makefile.wat 25 Nov 2005 20:04:35 -0000 1.8 --- makefile.wat 23 Jan 2006 19:38:29 -0000 1.9 *************** *** 1,5 **** # ========================================================================= # This makefile was generated by ! # Bakefile 0.1.9 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= --- 1,5 ---- # ========================================================================= # This makefile was generated by ! # Bakefile 0.2.0 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= *************** *** 15,28 **** # Use DLL build of wx library to use? [0,1] WX_SHARED = 0 # Compile Unicode build of wxWidgets? [0,1] WX_UNICODE = 0 # Use debug build of wxWidgets (define __WXDEBUG__)? [0,1] WX_DEBUG = 1 # Version of the wx library to build against. ! WX_VERSION = 26 # Does the wxLua utilities should be compiled ? [0,1] --- 15,38 ---- # Use DLL build of wx library to use? [0,1] + # 1 - DLL WX_SHARED = 0 # Compile Unicode build of wxWidgets? [0,1] + # 1 - Unicode WX_UNICODE = 0 # Use debug build of wxWidgets (define __WXDEBUG__)? [0,1] + # 0 - Release + # 1 - Debug WX_DEBUG = 1 # Version of the wx library to build against. ! WX_VERSION = 27 ! ! # Should the wxLua utilities should be compiled ? [0,1] ! USE_UTIL = 1 ! ! # Should the wxLua applications be compiled ? [0,1] ! USE_APPS = 1 # Does the wxLua utilities should be compiled ? [0,1] *************** *** 41,50 **** USE_WXLUAEDITAPP = 0 - # Does the wxLua utilities should be compiled ? [0,1] - USE_UTIL = 1 - - # Should the wxLua applications be compiled ? [0,1] - USE_APPS = 1 - --- 51,54 ---- *************** *** 70,73 **** --- 74,93 ---- ### Conditionally set variables: ### + WXLIBPOSTFIX = + !ifeq WX_DEBUG 1 + !ifeq WX_UNICODE 1 + WXLIBPOSTFIX = ud + !endif + !endif + !ifeq WX_DEBUG 1 + !ifeq WX_UNICODE 0 + WXLIBPOSTFIX = d + !endif + !endif + !ifeq WX_DEBUG 0 + !ifeq WX_UNICODE 1 + WXLIBPOSTFIX = u + !endif + !endif __utils___depname = !ifeq USE_UTIL 1 *************** *** 84,95 **** CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" WX_DIR="$(WX_DIR)" & WX_SHARED="$(WX_SHARED)" WX_UNICODE="$(WX_UNICODE)" WX_DEBUG="$(WX_DEBUG)" & ! WX_VERSION="$(WX_VERSION)" USE_BIN2C="$(USE_BIN2C)" & ! USE_WXLUADEBUGLIB="$(USE_WXLUADEBUGLIB)" & USE_WXLUASOCKETLIB="$(USE_WXLUASOCKETLIB)" & WXLUASETUP_DIR="$(WXLUASETUP_DIR)" WXLUABINDLIB_DIR="$(WXLUABINDLIB_DIR)" & ! USE_WXLUAAPP="$(USE_WXLUAAPP)" USE_WXLUAEDITAPP="$(USE_WXLUAEDITAPP)" & ! USE_UTIL="$(USE_UTIL)" USE_APPS="$(USE_APPS)" ### Targets: ### --- 104,118 ---- CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" WX_DIR="$(WX_DIR)" & WX_SHARED="$(WX_SHARED)" WX_UNICODE="$(WX_UNICODE)" WX_DEBUG="$(WX_DEBUG)" & ! WX_VERSION="$(WX_VERSION)" USE_UTIL="$(USE_UTIL)" USE_APPS="$(USE_APPS)" & ! USE_BIN2C="$(USE_BIN2C)" USE_WXLUADEBUGLIB="$(USE_WXLUADEBUGLIB)" & USE_WXLUASOCKETLIB="$(USE_WXLUASOCKETLIB)" & WXLUASETUP_DIR="$(WXLUASETUP_DIR)" WXLUABINDLIB_DIR="$(WXLUABINDLIB_DIR)" & ! USE_WXLUAAPP="$(USE_WXLUAAPP)" USE_WXLUAEDITAPP="$(USE_WXLUAEDITAPP)" + all : watcom$(WXLIBPOSTFIX) + watcom$(WXLIBPOSTFIX) : + -if not exist watcom$(WXLIBPOSTFIX) mkdir watcom$(WXLIBPOSTFIX) + ### Targets: ### *************** *** 97,105 **** clean : .SYMBOLIC ! -if exist .\*.obj del .\*.obj ! -if exist .\*.res del .\*.res ! -if exist .\*.lbc del .\*.lbc ! -if exist .\*.ilk del .\*.ilk ! -if exist .\*.pch del .\*.pch cd ..\..\util\build\msw wmake $(__MAKEOPTS__) -f makefile.wat $(MAKEARGS) clean --- 120,128 ---- clean : .SYMBOLIC ! -if exist watcom$(WXLIBPOSTFIX)\*.obj del watcom$(WXLIBPOSTFIX)\*.obj ! -if exist watcom$(WXLIBPOSTFIX)\*.res del watcom$(WXLIBPOSTFIX)\*.res ! -if exist watcom$(WXLIBPOSTFIX)\*.lbc del watcom$(WXLIBPOSTFIX)\*.lbc ! -if exist watcom$(WXLIBPOSTFIX)\*.ilk del watcom$(WXLIBPOSTFIX)\*.ilk ! -if exist watcom$(WXLIBPOSTFIX)\*.pch del watcom$(WXLIBPOSTFIX)\*.pch cd ..\..\util\build\msw wmake $(__MAKEOPTS__) -f makefile.wat $(MAKEARGS) clean Index: makefile.gcc =================================================================== RCS file: /cvsroot/wxlua/wxLua/build/msw/makefile.gcc,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** makefile.gcc 25 Nov 2005 20:04:35 -0000 1.8 --- makefile.gcc 23 Jan 2006 19:38:29 -0000 1.9 *************** *** 1,5 **** # ========================================================================= # This makefile was generated by ! # Bakefile 0.1.9 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= --- 1,5 ---- # ========================================================================= # This makefile was generated by ! # Bakefile 0.2.0 (http://bakefile.sourceforge.net) # Do not modify, all changes will be overwritten! # ========================================================================= *************** *** 24,28 **** # Version of the wx library to build against. ! WX_VERSION = 26 # Does the wxLua utilities should be compiled ? [0,1] --- 24,34 ---- # Version of the wx library to build against. ! WX_VERSION = 27 ! ! # Should the wxLua utilities should be compiled ? [0,1] ! USE_UTIL = 1 ! ! # Should the wxLua applications be compiled ? [0,1] ! USE_APPS = 1 # Does the wxLua utilities should be compiled ? [0,1] *************** *** 41,50 **** USE_WXLUAEDITAPP = 0 - # Does the wxLua utilities should be compiled ? [0,1] - USE_UTIL = 1 - - # Should the wxLua applications be compiled ? [0,1] - USE_APPS = 1 - --- 47,50 ---- *************** *** 58,70 **** CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" WX_DIR="$(WX_DIR)" \ WX_SHARED="$(WX_SHARED)" WX_UNICODE="$(WX_UNICODE)" WX_DEBUG="$(WX_DEBUG)" \ ! WX_VERSION="$(WX_VERSION)" USE_BIN2C="$(USE_BIN2C)" \ ! USE_WXLUADEBUGLIB="$(USE_WXLUADEBUGLIB)" \ USE_WXLUASOCKETLIB="$(USE_WXLUASOCKETLIB)" \ WXLUASETUP_DIR="$(WXLUASETUP_DIR)" WXLUABINDLIB_DIR="$(WXLUABINDLIB_DIR)" \ ! USE_WXLUAAPP="$(USE_WXLUAAPP)" USE_WXLUAEDITAPP="$(USE_WXLUAEDITAPP)" \ ! USE_UTIL="$(USE_UTIL)" USE_APPS="$(USE_APPS)" ### Conditionally set variables: ### ifeq ($(USE_UTIL),1) __utils___depname = utils --- 58,84 ---- CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" WX_DIR="$(WX_DIR)" \ WX_SHARED="$(WX_SHARED)" WX_UNICODE="$(WX_UNICODE)" WX_DEBUG="$(WX_DEBUG)" \ ! WX_VERSION="$(WX_VERSION)" USE_UTIL="$(USE_UTIL)" USE_APPS="$(USE_APPS)" \ ! USE_BIN2C="$(USE_BIN2C)" USE_WXLUADEBUGLIB="$(USE_WXLUADEBUGLIB)" \ USE_WXLUASOCKETLIB="$(USE_WXLUASOCKETLIB)" \ WXLUASETUP_DIR="$(WXLUASETUP_DIR)" WXLUABINDLIB_DIR="$(WXLUABINDLIB_DIR)" \ ! USE_WXLUAAPP="$(USE_WXLUAAPP)" USE_WXLUAEDITAPP="$(USE_WXLUAEDITAPP)" ### Conditionally set variables: ### + ifeq ($(WX_DEBUG),1) + ifeq ($(WX_UNICODE),1) + WXLIBPOSTFIX = ud + endif + endif + ifeq ($(WX_DEBUG),1) + ifeq ($(WX_UNICODE),0) + WXLIBPOSTFIX = d + endif + endif + ifeq ($(WX_DEBUG),0) + ifeq ($(WX_UNICODE),1) + WXLIBPOSTFIX = u + endif + endif ifeq ($(USE_UTIL),1) __utils___depname = utils *************** *** 75,78 **** --- 89,96 ---- + all: mingw$(WXLIBPOSTFIX) + mingw$(WXLIBPOSTFIX): + -if not exist mingw$(WXLIBPOSTFIX) mkdir mingw$(WXLIBPOSTFIX) + ### Targets: ### *************** *** 80,85 **** clean: ! -if exist .\*.o del .\*.o ! -if exist .\*.d del .\*.d $(MAKE) -C ..\..\util\build\msw -f makefile.gcc $(MAKEARGS) clean $(MAKE) -C ..\..\modules\build\msw -f makefile.gcc $(MAKEARGS) clean --- 98,103 ---- clean: ! -if exist mingw$(WXLIBPOSTFIX)\*.o del mingw$(WXLIBPOSTFIX)\*.o ! -if exist mingw$(WXLIBPOSTFIX)\*.d del mingw$(WXLIBPOSTFIX)\*.d $(MAKE) -C ..\..\util\build\msw -f makefile.gcc $(MAKEARGS) clean $(MAKE) -C ..\..\modules\build\msw -f makefile.gcc $(MAKEARGS) clean *************** *** 103,105 **** # Dependencies tracking: ! -include ./*.d --- 121,123 ---- # Dependencies tracking: ! -include mingw$(WXLIBPOSTFIX)/*.d |