]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/makefile.bcc
size_t is always unsigned....
[wxWidgets.git] / utils / makefile.bcc
index b5809588b6bdc00c2fcf80355f42d0fd03d4b72d..a72992e38d93ccbf8dc6fae7a7eb1dd307cb0f3d 100644 (file)
@@ -4,7 +4,12 @@
 #     Do not modify, all changes will be overwritten!
 # =========================================================================
 
+.autodepend
+
 !ifndef BCCDIR
+!ifndef MAKEDIR
+!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
+!endif
 BCCDIR = $(MAKEDIR)\..
 !endif
 
@@ -14,10 +19,6 @@ BCCDIR = $(MAKEDIR)\..
 # Do not modify the rest of this file!
 # -------------------------------------------------------------------------
 
-!if "$(BCCDIR)" == "\.."
-!error Your Borland compiler does not define MAKEDIR. Please define the BCCDIR variable, e.g. BCCDIR=d:\bc4
-!endif
-
 ### Variables: ###
 
 MAKEARGS = -DCPPFLAGS="$(CPPFLAGS)" -DDEBUG_FLAG="$(DEBUG_FLAG)" \
@@ -36,17 +37,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