]> git.saurik.com Git - wxWidgets.git/blobdiff - src/makelib.wat
Unicode build fix
[wxWidgets.git] / src / makelib.wat
index 52cd95aa5b53fee3cd651cbf1806007c726101b2..110f0398a5ec36ade09b89273aac04f93e3971d9 100644 (file)
@@ -1,26 +1,41 @@
-!include makewat.env
+#
+# Changelist:  2003-02-25 - Juergen Ulbts - update from wxWindows 2.5.x/HEAD branch
+#
 
-all: $(OUTPUTDIR) $(LIBTARGET)
 
-$(OUTPUTDIR):
-       @if not exist $^@ mkdir $^@
+THISDIR = $+ $(%cdrive):$(%cwd) $-
+# set OUTPUTDIR to the directory to be used for the .obj files created during
+# the build (under $THISDIR)
+!ifndef OUTPUTDIR
+OUTPUTDIR=$(THISDIR)\$(BASEDIRPREFIX)$(CONFIGURATION)Watcom
+# no trailing slash for win98
+!endif
+
+!include $(WXDIR)\src\makewat.env
+
+
+
+all: MAKDIR $(LIBTARGET) .SYMBOLIC
+
+MAKDIR:  .SYMBOLIC
+       @if not exist $(OUTPUTDIR) mkdir $(OUTPUTDIR)
 
 # the name of the file containing the objects to be put in the library
-LBCFILE=$(OUTPUTDIR)$(LIBTARGET).lbc
+LBCFILE=$(LIBTARGET).lbc
 $(LIBTARGET) : $(OBJECTS)
     %create $(LBCFILE)
     @for %i in ( $(OBJECTS) ) do @%append $(LBCFILE) +%i
     $(LIB) /b /c /n /p=512 $^@ @$(LBCFILE)
 
 clean:   .SYMBOLIC
-    -erase $(OUTPUTDIR)*.obj
-    -erase $(OUTPUTDIR)*.bak
-    -erase $(OUTPUTDIR)*.err
-    -erase $(OUTPUTDIR)*.pch
-    -erase $(OUTPUTDIR)*.lib
-    -erase $(OUTPUTDIR)*.lbc
-    -erase $(OUTPUTDIR)*.res
-    -erase $(OUTPUTDIR)*.exe
-    -erase $(OUTPUTDIR)*.lbc
+    -erase $(OUTPUTDIR)\*.obj
+    -erase $(OUTPUTDIR)\*.bak
+    -erase $(OUTPUTDIR)\*.err
+    -erase $(OUTPUTDIR)\*.pch
+    -erase $(OUTPUTDIR)\*.lib
+    -erase $(OUTPUTDIR)\*.lbc
+    -erase $(OUTPUTDIR)\*.res
+    -erase $(OUTPUTDIR)\*.exe
+    -erase $(OUTPUTDIR)\*.lbc
     -erase $(LIBTARGET)