add to utils.bkl the hhp2cached (why wasn't already there?) and screenshotgen utilities

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56107 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-10-06 10:00:30 +00:00
parent 0d5eda9ccd
commit 63052a509d
6 changed files with 116 additions and 24 deletions

View File

@@ -1,6 +1,6 @@
# =========================================================================
# This makefile was generated by
# Bakefile 0.2.3 (http://www.bakefile.org)
# Bakefile 0.2.4 (http://www.bakefile.org)
# Do not modify, all changes will be overwritten!
# =========================================================================
@@ -28,8 +28,9 @@ MAKEARGS = -DCC="$(CC)" -DCXX="$(CXX)" -DCFLAGS="$(CFLAGS)" \
-DDEBUG_INFO="$(DEBUG_INFO)" -DDEBUG_FLAG="$(DEBUG_FLAG)" \
-DMONOLITHIC="$(MONOLITHIC)" -DUSE_GUI="$(USE_GUI)" \
-DUSE_HTML="$(USE_HTML)" -DUSE_MEDIA="$(USE_MEDIA)" -DUSE_XRC="$(USE_XRC)" \
-DUSE_AUI="$(USE_AUI)" -DUSE_RICHTEXT="$(USE_RICHTEXT)" \
-DUSE_STC="$(USE_STC)" -DUSE_OPENGL="$(USE_OPENGL)" -DUSE_QA="$(USE_QA)" \
-DUSE_AUI="$(USE_AUI)" -DUSE_PROPGRID="$(USE_PROPGRID)" \
-DUSE_RICHTEXT="$(USE_RICHTEXT)" -DUSE_STC="$(USE_STC)" \
-DUSE_OPENGL="$(USE_OPENGL)" -DUSE_QA="$(USE_QA)" \
-DUSE_EXCEPTIONS="$(USE_EXCEPTIONS)" -DUSE_RTTI="$(USE_RTTI)" \
-DUSE_THREADS="$(USE_THREADS)" -DUSE_GDIPLUS="$(USE_GDIPLUS)" \
-DOFFICIAL_BUILD="$(OFFICIAL_BUILD)" -DVENDOR="$(VENDOR)" \
@@ -43,7 +44,7 @@ MAKEARGS = -DCC="$(CC)" -DCXX="$(CXX)" -DCFLAGS="$(CFLAGS)" \
### Targets: ###
all: emulator helpview ifacecheck
all: emulator helpview hhp2cached ifacecheck screenshotgen
clean:
-if exist .\*.obj del .\*.obj
@@ -57,10 +58,18 @@ clean:
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>helpview.bat
call helpview.bat
@del helpview.bat
@echo cd hhp2cached >hhp2cached.bat
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>hhp2cached.bat
call hhp2cached.bat
@del hhp2cached.bat
@echo cd ifacecheck\src >ifacecheck.bat
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>ifacecheck.bat
call ifacecheck.bat
@del ifacecheck.bat
@echo cd screenshotgen\src >screenshotgen.bat
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>screenshotgen.bat
call screenshotgen.bat
@del screenshotgen.bat
emulator:
@echo cd emulator\src >emulator.bat
@@ -74,9 +83,21 @@ helpview:
call helpview.bat
@del helpview.bat
hhp2cached:
@echo cd hhp2cached >hhp2cached.bat
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>hhp2cached.bat
call hhp2cached.bat
@del hhp2cached.bat
ifacecheck:
@echo cd ifacecheck\src >ifacecheck.bat
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>ifacecheck.bat
call ifacecheck.bat
@del ifacecheck.bat
screenshotgen:
@echo cd screenshotgen\src >screenshotgen.bat
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>screenshotgen.bat
call screenshotgen.bat
@del screenshotgen.bat