X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b71531ad92f44d4ceba46418020061d24777e4f4..bdcf3ef53dc862cc654c92c1c259ad9dc84605fc:/utils/makefile.bcc diff --git a/utils/makefile.bcc b/utils/makefile.bcc index b5809588b6..8bd811d588 100644 --- a/utils/makefile.bcc +++ b/utils/makefile.bcc @@ -36,17 +36,32 @@ MAKEARGS = -DCPPFLAGS="$(CPPFLAGS)" -DDEBUG_FLAG="$(DEBUG_FLAG)" \ ### Targets: ### -all: tex2rtf helpgen +all: configtool emulator helpview tex2rtf helpgen clean: -if exist .\*.obj del .\*.obj -if exist .\*.res del .\*.res +configtool: + cd configtool\src + $(MAKE) -f makefile.bcc $(MAKEARGS) all + cd ..\.. + +emulator: + cd emulator\src + $(MAKE) -f makefile.bcc $(MAKEARGS) all + cd ..\.. + helpgen: cd HelpGen $(MAKE) -f makefile.bcc $(MAKEARGS) all cd .. +helpview: + cd helpview\src + $(MAKE) -f makefile.bcc $(MAKEARGS) all + cd ..\.. + tex2rtf: cd tex2rtf\src $(MAKE) -f makefile.bcc $(MAKEARGS) all