added the interface checker to the utils folder

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52708 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-03-22 18:02:13 +00:00
parent 586235b181
commit 5934cda171
25 changed files with 6191 additions and 69 deletions

View File

@@ -43,7 +43,7 @@ MAKEARGS = -DCC="$(CC)" -DCXX="$(CXX)" -DCFLAGS="$(CFLAGS)" \
### Targets: ###
all: emulator helpview tex2rtf helpgen
all: emulator helpview tex2rtf helpgen ifacecheck
clean:
-if exist .\*.obj del .\*.obj
@@ -65,6 +65,10 @@ clean:
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>helpgen.bat
call helpgen.bat
@del helpgen.bat
@echo cd ifacecheck\src >ifacecheck.bat
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) clean >>ifacecheck.bat
call ifacecheck.bat
@del ifacecheck.bat
emulator:
@echo cd emulator\src >emulator.bat
@@ -90,3 +94,9 @@ helpgen:
call helpgen.bat
@del helpgen.bat
ifacecheck:
@echo cd ifacecheck\src >ifacecheck.bat
@echo $(MAKE) -f makefile.bcc $(MAKEARGS) all >>ifacecheck.bat
call ifacecheck.bat
@del ifacecheck.bat