aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nt/makefile.def8
1 files changed, 7 insertions, 1 deletions
diff --git a/nt/makefile.def b/nt/makefile.def
index a7de40fd209..aa33dbb7de6 100644
--- a/nt/makefile.def
+++ b/nt/makefile.def
@@ -126,7 +126,7 @@ BASE_LIBS = $(libc) $(baselibs)
126!if "$(LINK)" == "link32" 126!if "$(LINK)" == "link32"
127SYS_LDFLAGS = 127SYS_LDFLAGS =
128!else 128!else
129SYS_LDFLAGS = -pdb:none -release -incremental:no 129SYS_LDFLAGS = -pdb:none -release -incremental:no -version:3.10
130!endif 130!endif
131 131
132INC = -I. 132INC = -I.
@@ -149,8 +149,14 @@ $(BLD): $(OBJDIR)
149CP = copy 149CP = copy
150CP_DIR = xcopy /f/r/i/e/d 150CP_DIR = xcopy /f/r/i/e/d
151 151
152!if "$(OS_TYPE)" == "win95"
153DEL = deltree /y
154DEL_TREE = deltree /y
155!else
156DEL = del
152# This is completely braindamaged, but it's the only routine known to be there 157# This is completely braindamaged, but it's the only routine known to be there
153DEL_TREE = echo y | rmdir /s 158DEL_TREE = echo y | rmdir /s
159!endif
154 160
155# The location of the icon file 161# The location of the icon file
156EMACS_ICON_PATH = ..\nt\emacs.ico 162EMACS_ICON_PATH = ..\nt\emacs.ico