X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/97507ccea7da6ca3765aa3c56bc74b1db47ca557..50b39f8ffe9b047865801d52d30b8bb397df2a64:/src/makelib.vc

diff --git a/src/makelib.vc b/src/makelib.vc
index 6cbf046e07..2c4b8b9b5a 100644
--- a/src/makelib.vc
+++ b/src/makelib.vc
@@ -9,12 +9,19 @@
 # Use FINAL=1 argument to nmake to build final version with no debugging
 # info
 
-# Set WXDIR for your system
-WXDIR = j:\dev\wx2\wxWindows
+# Set WXDIR for your system (hint, set an environment variable named WXWIN)
+WXDIR = $(WXWIN)
 
 !include $(WXDIR)\src\makevc.env
 
-all:    $(LIBTARGET)
+!if "$(RM)" == ""
+RM= erase
+!endif
+
+all:    $(D) $(EXTRATARGETS) $(LIBTARGET)
+
+$(D) :
+	mkdir $(D)
 
 wx:
         cd $(WXDIR)\src\msw
@@ -25,7 +32,7 @@ wxclean:
         nmake -f makefile.vc clean
 
 $(LIBTARGET): $(OBJECTS)
-	-erase $(LIBTARGET)
+	-$(RM) $(LIBTARGET)
 	$(implib) @<<
 -out:$(LIBTARGET)
 -machine:$(CPU)
@@ -33,10 +40,10 @@ $(OBJECTS)
 <<
 
 clean:
-        -erase $(LIBTARGET)
-        -erase $(OBJECTS)
-        -erase *.exe
-        -erase *.res
-        -erase *.map
-        -erase *.sbr
-        -erase *.pdb
+        -$(RM) $(LIBTARGET)
+        -$(RM) $(OBJECTS)
+        -$(RM) *.exe
+        -$(RM) *.res
+        -$(RM) *.map
+        -$(RM) *.sbr
+        -$(RM) *.pdb