fixed utils.bkl to include all utils

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24067 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2003-10-03 15:52:48 +00:00
parent 5ed08e5bb5
commit e1e61c81bd
6 changed files with 88 additions and 7 deletions

View File

@@ -28,15 +28,24 @@ MAKEARGS = CPPFLAGS="$(CPPFLAGS)" DEBUG_FLAG="$(DEBUG_FLAG)" \
### Targets: ###
all: tex2rtf helpgen
all: configtool emulator helpview tex2rtf helpgen
clean:
-if exist .\*.o del .\*.o
configtool:
$(MAKE) -C configtool\src -f makefile.gcc $(MAKEARGS) all
emulator:
$(MAKE) -C emulator\src -f makefile.gcc $(MAKEARGS) all
helpgen:
$(MAKE) -C HelpGen -f makefile.gcc $(MAKEARGS) all
helpview:
$(MAKE) -C helpview\src -f makefile.gcc $(MAKEARGS) all
tex2rtf:
$(MAKE) -C tex2rtf\src -f makefile.gcc $(MAKEARGS) all
.PHONY: all clean helpgen tex2rtf
.PHONY: all clean configtool emulator helpgen helpview tex2rtf