aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeoff Voelker1996-03-28 04:40:02 +0000
committerGeoff Voelker1996-03-28 04:40:02 +0000
commitb2bc29b1665501d85b855072bbc4a29d41dfebf9 (patch)
tree5fb378c0cc7f62f52aa6db667c35aa60f8ca03d4
parent2e17c871e3359380613cbe82ec7cf51a040b6865 (diff)
downloademacs-b2bc29b1665501d85b855072bbc4a29d41dfebf9.tar.gz
emacs-b2bc29b1665501d85b855072bbc4a29d41dfebf9.zip
(DEL): Defined.
(DELTREE) [win95]: Defined. (SYS_LDFLAGS): Set executable versions to 3.10.
-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