Update of /cvsroot/wxlua/wxLua/build/msw
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21113/build/msw
Modified Files:
makefile.bcc makefile.gcc makefile.vc makefile.wat
Log Message:
Added bakefile build system
Index: makefile.vc
===================================================================
RCS file: /cvsroot/wxlua/wxLua/build/msw/makefile.vc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** makefile.vc 12 Jun 2005 21:21:09 -0000 1.2
--- makefile.vc 12 Jun 2005 21:31:38 -0000 1.3
***************
*** 46,50 ****
-if exist .\*.res del .\*.res
-if exist .\*.pch del .\*.pch
! cd ..\..\utils\build\msw
$(MAKE) -f makefile.vc $(MAKEARGS) clean
cd $(MAKEDIR)
--- 46,50 ----
-if exist .\*.res del .\*.res
-if exist .\*.pch del .\*.pch
! cd ..\..\util\build\msw
$(MAKE) -f makefile.vc $(MAKEARGS) clean
cd $(MAKEDIR)
***************
*** 57,61 ****
utils:
! cd ..\..\utils\build\msw
$(MAKE) -f makefile.vc $(MAKEARGS)
cd $(MAKEDIR)
--- 57,61 ----
utils:
! cd ..\..\util\build\msw
$(MAKE) -f makefile.vc $(MAKEARGS)
cd $(MAKEDIR)
Index: makefile.bcc
===================================================================
RCS file: /cvsroot/wxlua/wxLua/build/msw/makefile.bcc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** makefile.bcc 12 Jun 2005 21:21:09 -0000 1.2
--- makefile.bcc 12 Jun 2005 21:31:38 -0000 1.3
***************
*** 118,122 ****
-if exist .\*.res del .\*.res
-if exist .\*.csm del .\*.csm
! @echo cd ..\..\utils\build\msw >utils.bat
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>utils.bat
call utils.bat
--- 118,122 ----
-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
***************
*** 132,136 ****
utils:
! @echo cd ..\..\utils\build\msw >utils.bat
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) >>utils.bat
call utils.bat
--- 132,136 ----
utils:
! @echo cd ..\..\util\build\msw >utils.bat
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) >>utils.bat
call utils.bat
Index: makefile.wat
===================================================================
RCS file: /cvsroot/wxlua/wxLua/build/msw/makefile.wat,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** makefile.wat 12 Jun 2005 21:21:09 -0000 1.2
--- makefile.wat 12 Jun 2005 21:31:38 -0000 1.3
***************
*** 63,67 ****
-if exist .\*.ilk del .\*.ilk
-if exist .\*.pch del .\*.pch
! cd ..\..\utils\build\msw
wmake $(__MAKEOPTS__) -f makefile.wat $(MAKEARGS) clean
cd $(WATCOM_CWD)
--- 63,67 ----
-if exist .\*.ilk del .\*.ilk
-if exist .\*.pch del .\*.pch
! cd ..\..\util\build\msw
wmake $(__MAKEOPTS__) -f makefile.wat $(MAKEARGS) clean
cd $(WATCOM_CWD)
***************
*** 74,78 ****
utils : .SYMBOLIC
! cd ..\..\utils\build\msw
wmake $(__MAKEOPTS__) -f makefile.wat $(MAKEARGS)
cd $(WATCOM_CWD)
--- 74,78 ----
utils : .SYMBOLIC
! cd ..\..\util\build\msw
wmake $(__MAKEOPTS__) -f makefile.wat $(MAKEARGS)
cd $(WATCOM_CWD)
Index: makefile.gcc
===================================================================
RCS file: /cvsroot/wxlua/wxLua/build/msw/makefile.gcc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** makefile.gcc 12 Jun 2005 21:21:09 -0000 1.2
--- makefile.gcc 12 Jun 2005 21:31:38 -0000 1.3
***************
*** 44,53 ****
clean:
-if exist .\*.o del .\*.o
! $(MAKE) -C ..\..\utils\build\msw -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C ..\..\modules\build\msw -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C ..\..\apps\build\msw -f makefile.gcc $(MAKEARGS) clean
utils:
! $(MAKE) -C ..\..\utils\build\msw -f makefile.gcc $(MAKEARGS)
modules:
--- 44,53 ----
clean:
-if exist .\*.o del .\*.o
! $(MAKE) -C ..\..\util\build\msw -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C ..\..\modules\build\msw -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C ..\..\apps\build\msw -f makefile.gcc $(MAKEARGS) clean
utils:
! $(MAKE) -C ..\..\util\build\msw -f makefile.gcc $(MAKEARGS)
modules:
|