]> git.saurik.com Git - wxWidgets.git/blobdiff - src/makelib.vc
fixed TestTimeFormat() test: and can use 2 digit years which broke dates comparison...
[wxWidgets.git] / src / makelib.vc
index 8b5b459d80da5836bed4538cae6d904d3c62881a..2c4b8b9b5ade67acd36085aa5090b0ce1480386d 100644 (file)
@@ -2,19 +2,26 @@
 # File:                makelib.vc
 # Author:      Julian Smart
 # Created:     1999
 # File:                makelib.vc
 # Author:      Julian Smart
 # Created:     1999
-# Updated:     
+# Updated:
 # Copyright:   (c) Julian Smart
 #
 # Makefile : Builds a library for a utility
 # Use FINAL=1 argument to nmake to build final version with no debugging
 # info
 
 # Copyright:   (c) Julian Smart
 #
 # Makefile : Builds a library for a utility
 # Use FINAL=1 argument to nmake to build final version with no debugging
 # info
 
-# Set WXDIR for your system
+# Set WXDIR for your system (hint, set an environment variable named WXWIN)
 WXDIR = $(WXWIN)
 
 !include $(WXDIR)\src\makevc.env
 
 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
 
 wx:
         cd $(WXDIR)\src\msw
@@ -25,7 +32,7 @@ wxclean:
         nmake -f makefile.vc clean
 
 $(LIBTARGET): $(OBJECTS)
         nmake -f makefile.vc clean
 
 $(LIBTARGET): $(OBJECTS)
-       -erase $(LIBTARGET)
+       -$(RM) $(LIBTARGET)
        $(implib) @<<
 -out:$(LIBTARGET)
 -machine:$(CPU)
        $(implib) @<<
 -out:$(LIBTARGET)
 -machine:$(CPU)
@@ -33,10 +40,10 @@ $(OBJECTS)
 <<
 
 clean:
 <<
 
 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