Update of /cvsroot/monetdb/buildtools/autogen/autogen
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv939

Modified Files:
        msc.py 
Log Message:
Make it easier possible to compile against debugging libraries (which you will 
need to create first...).
Pass DEBUG=1/NDEBUG=1 command line option to inferior nmake.

Index: msc.py
===================================================================
RCS file: /cvsroot/monetdb/buildtools/autogen/autogen/msc.py,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -d -r1.47 -r1.48
--- msc.py      13 Dec 2007 16:27:30 -0000      1.47
+++ msc.py      7 Jan 2008 15:17:20 -0000       1.48
@@ -68,15 +68,15 @@
     else:
         vv = v
     fd.write('%s-%d-all: "%s-%d-dir" "%s-%d-Makefile"\n' % (n, i, n, i, n, i))
-    fd.write('\t$(CD) "%s" && $(MAKE) /nologo "prefix=$(prefix)" 
"bits=$(bits)" all \n' % vv)
+    fd.write('\t$(CD) "%s" && $(MAKE) /nologo $(MAKEDEBUG) "prefix=$(prefix)" 
"bits=$(bits)" all \n' % vv)
     fd.write('%s-%d-dir: \n\tif not exist "%s" $(MKDIR) "%s"\n' % (n, i, vv, 
vv))
     fd.write('%s-%d-Makefile: "$(SRCDIR)\\%s\\Makefile.msc"\n' % (n, i, v))
     fd.write('\t$(INSTALL) "$(SRCDIR)\\%s\\Makefile.msc" "%s\\Makefile"\n' % 
(v, v))
     fd.write('%s-%d-check: "%s"\n' % (n, i, vv))
-    fd.write('\t$(CD) "%s" && $(MAKE) /nologo "prefix=$(prefix)" 
"bits=$(bits)" check\n' % vv)
+    fd.write('\t$(CD) "%s" && $(MAKE) /nologo $(MAKEDEBUG) "prefix=$(prefix)" 
"bits=$(bits)" check\n' % vv)
 
     fd.write('%s-%d-install: "$(bindir)" "$(libdir)"\n' % (n, i))
-    fd.write('\t$(CD) "%s" && $(MAKE) /nologo "prefix=$(prefix)" 
"bits=$(bits)" install\n' % vv)
+    fd.write('\t$(CD) "%s" && $(MAKE) /nologo $(MAKEDEBUG) "prefix=$(prefix)" 
"bits=$(bits)" install\n' % vv)
 
 def empty_dir(fd, n, i):
 


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Monetdb-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-checkins

Reply via email to