From 8b44f2a7b2e4e2e2749a27fc9f30dc56cc257ab0 Mon Sep 17 00:00:00 2001 From: Andy McFadden Date: Thu, 6 Mar 2003 01:06:07 +0000 Subject: [PATCH] Minor tweaks to MSC makefile. --- nulib2/Makefile.msc | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/nulib2/Makefile.msc b/nulib2/Makefile.msc index ec072a0..8cd7a35 100644 --- a/nulib2/Makefile.msc +++ b/nulib2/Makefile.msc @@ -33,20 +33,24 @@ OBJS = $(OBJS1) $(OBJS2) !ifdef DLL ### build using the same libc as the DLL !ifdef NODEBUG +#OPT = $(cdebug) /D NDEBUG /MD OPT = $(cdebug) /MD LIB_FLAGS = /nodefaultlib:libcd.lib /nologo setargv.obj !else -OPT = $(cdebug) /MDd +#OPT = $(cdebug) /MDd +OPT = $(cdebug) /D DEBUG_MSGS /MDd LIB_FLAGS = /nodefaultlib:libc.lib /nologo setargv.obj !endif !else ### build against static lib !ifdef NODEBUG +#OPT = $(cdebug) /D NDEBUG /ML OPT = $(cdebug) /ML LIB_FLAGS = /nodefaultlib:libcd.lib /nologo libc.lib setargv.obj !else -OPT = $(cdebug) /MLd +#OPT = $(cdebug) /MLd +OPT = $(cdebug) /D DEBUG_MSGS /MLd LIB_FLAGS = /nodefaultlib:libc.lib /nologo libcd.lib setargv.obj !endif !endif