Update of /cvsroot/wxlua/wxLua/build/msw
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7921/build/msw
Modified Files:
makefile.vc
Log Message:
Updated makefiles
Index: makefile.vc
===================================================================
RCS file: /cvsroot/wxlua/wxLua/build/msw/makefile.vc,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** makefile.vc 14 Jun 2005 21:44:40 -0000 1.4
--- makefile.vc 19 Jun 2005 19:11:06 -0000 1.5
***************
*** 59,66 ****
!if "$(USE_UTIL)" == "1"
! __utils___depname = utils
!endif
!if "$(USE_APPS)" == "1"
! __apps___depname = apps
!endif
--- 59,66 ----
!if "$(USE_UTIL)" == "1"
! __utils___depname = sub_utils
!endif
!if "$(USE_APPS)" == "1"
! __apps___depname = sub_apps
!endif
***************
*** 68,72 ****
### Targets: ###
! all: $(__utils___depname) modules $(__apps___depname)
clean:
--- 68,72 ----
### Targets: ###
! all: $(__utils___depname) sub_modules $(__apps___depname)
clean:
***************
*** 85,89 ****
!if "$(USE_UTIL)" == "1"
! utils:
cd ..\..\util\build\msw
$(MAKE) -f makefile.vc $(MAKEARGS)
--- 85,89 ----
!if "$(USE_UTIL)" == "1"
! sub_utils:
cd ..\..\util\build\msw
$(MAKE) -f makefile.vc $(MAKEARGS)
***************
*** 91,95 ****
!endif
! modules:
cd ..\..\modules\build\msw
$(MAKE) -f makefile.vc $(MAKEARGS)
--- 91,95 ----
!endif
! sub_modules:
cd ..\..\modules\build\msw
$(MAKE) -f makefile.vc $(MAKEARGS)
***************
*** 97,101 ****
!if "$(USE_APPS)" == "1"
! apps:
cd ..\..\apps\build\msw
$(MAKE) -f makefile.vc $(MAKEARGS)
--- 97,101 ----
!if "$(USE_APPS)" == "1"
! sub_apps:
cd ..\..\apps\build\msw
$(MAKE) -f makefile.vc $(MAKEARGS)
|