summaryrefslogtreecommitdiff
path: root/src/Make_mvc.mak
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-01-02 11:28:13 +0000
committerBram Moolenaar <Bram@vim.org>2005-01-02 11:28:13 +0000
commit3411469dd2a23fddc4fc0be1a79a58a7a05160e4 (patch)
treea335543a185b41f1679df8f4f470b8facbb409e1 /src/Make_mvc.mak
parent567e4dec2cb9b5eda4d7575f8f24c1da5bf646ea (diff)
downloadvim-git-3411469dd2a23fddc4fc0be1a79a58a7a05160e4.tar.gz
updated for version 7.0028
Diffstat (limited to 'src/Make_mvc.mak')
-rw-r--r--src/Make_mvc.mak17
1 files changed, 12 insertions, 5 deletions
diff --git a/src/Make_mvc.mak b/src/Make_mvc.mak
index 90dd888f3..df71a7778 100644
--- a/src/Make_mvc.mak
+++ b/src/Make_mvc.mak
@@ -53,9 +53,9 @@
# GETTEXT=[yes or no] (default is yes)
# See http://sourceforge.net/projects/gettext/
# PostScript printing: POSTSCRIPT=yes (default is no)
-# Feature Set: FEATURES=[TINY, SMALL, NORMAL, BIG, or HUGE] (default is BIG)
+# Feature Set: FEATURES=[TINY, SMALL, NORMAL, BIG, HUGE] (default is BIG)
# Version Support: WINVER=[0x0400, 0x0500] (default is 0x0400)
-# Processor Version: CPUNR=[i386, i486, i586, i686] (default is i386)
+# Processor Version: CPUNR=[i386, i486, i586, i686, P4] (default is i386)
# Optimization: OPTIMIZE=[SPACE, SPEED, MAXSPEED] (default is MAXSPEED)
# Netbeans Support: NETBEANS=[yes or no] (default is yes if GUI is yes)
# Netbeans Debugging Support: NBDEBUG=[yes or no] (default is no)
@@ -276,6 +276,8 @@ CPUARG = /G4
CPUARG = /G5
!elseif "$(CPUNR)" == "i686"
CPUARG = /G6
+!elseif "$(CPUNR)" == "P4"
+CPUARG = /G7 /arch:SSE2
!else
CPUARG =
!endif
@@ -289,10 +291,10 @@ OPTFLAG = /O2
!else # MAXSPEED
OPTFLAG = /Ox
!endif
-CFLAGS = $(CFLAGS) $(OPTFLAG) -DNDEBUG /Zi $(CPUARG)
+CFLAGS = $(CFLAGS) $(OPTFLAG) -DNDEBUG $(CPUARG)
RCFLAGS = $(rcflags) $(rcvars) -DNDEBUG
-PDB = /Fd$(OUTDIR)/
-LINK_PDB = /PDB:$(OUTDIR)/
+PDB =
+LINK_PDB =
! ifdef USE_MSVCRT
CFLAGS = $(CFLAGS) -MD
LIBC = msvcrt.lib
@@ -699,6 +701,11 @@ test:
$(MAKE) /NOLOGO -f Make_dos.mak win32
cd ..
+testclean:
+ cd testdir
+ $(MAKE) /NOLOGO -f Make_dos.mak clean
+ cd ..
+
###########################################################################
# Create a default rule for transforming .c files to .obj files in $(OUTDIR)