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

@@ -34,7 +34,7 @@ MAKEARGS = CC="$(CC)" CXX="$(CXX)" CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
### Targets: ###
all: sub_emulator sub_helpview sub_tex2rtf sub_helpgen
all: sub_emulator sub_helpview sub_tex2rtf sub_helpgen sub_ifacecheck
clean:
-if exist .\*.obj del .\*.obj
@@ -52,6 +52,9 @@ clean:
cd HelpGen\src
$(MAKE) -f makefile.vc $(MAKEARGS) clean
cd "$(MAKEDIR)"
cd ifacecheck\src
$(MAKE) -f makefile.vc $(MAKEARGS) clean
cd "$(MAKEDIR)"
sub_emulator:
cd emulator\src
@@ -73,3 +76,8 @@ sub_helpgen:
$(MAKE) -f makefile.vc $(MAKEARGS) all
cd "$(MAKEDIR)"
sub_ifacecheck:
cd ifacecheck\src
$(MAKE) -f makefile.vc $(MAKEARGS) all
cd "$(MAKEDIR)"