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

@@ -35,7 +35,7 @@ MAKEARGS = LINK_DLL_FLAGS="$(LINK_DLL_FLAGS)" \
### Targets: ###
all: emulator helpview tex2rtf helpgen
all: emulator helpview tex2rtf helpgen ifacecheck
clean:
-if exist .\*.o del .\*.o
@@ -44,6 +44,7 @@ clean:
$(MAKE) -C helpview\src -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C tex2rtf\src -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C HelpGen\src -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C ifacecheck\src -f makefile.gcc $(MAKEARGS) clean
emulator:
$(MAKE) -C emulator\src -f makefile.gcc $(MAKEARGS) all
@@ -57,7 +58,10 @@ tex2rtf:
helpgen:
$(MAKE) -C HelpGen\src -f makefile.gcc $(MAKEARGS) all
.PHONY: all clean emulator helpview tex2rtf helpgen
ifacecheck:
$(MAKE) -C ifacecheck\src -f makefile.gcc $(MAKEARGS) all
.PHONY: all clean emulator helpview tex2rtf helpgen ifacecheck
SHELL := $(COMSPEC)