diff options
| author | Geoff Voelker | 1996-03-28 04:40:02 +0000 |
|---|---|---|
| committer | Geoff Voelker | 1996-03-28 04:40:02 +0000 |
| commit | b2bc29b1665501d85b855072bbc4a29d41dfebf9 (patch) | |
| tree | 5fb378c0cc7f62f52aa6db667c35aa60f8ca03d4 /nt | |
| parent | 2e17c871e3359380613cbe82ec7cf51a040b6865 (diff) | |
| download | emacs-b2bc29b1665501d85b855072bbc4a29d41dfebf9.tar.gz emacs-b2bc29b1665501d85b855072bbc4a29d41dfebf9.zip | |
(DEL): Defined.
(DELTREE) [win95]: Defined.
(SYS_LDFLAGS): Set executable versions to 3.10.
Diffstat (limited to 'nt')
| -rw-r--r-- | nt/makefile.def | 8 |
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" |
| 127 | SYS_LDFLAGS = | 127 | SYS_LDFLAGS = |
| 128 | !else | 128 | !else |
| 129 | SYS_LDFLAGS = -pdb:none -release -incremental:no | 129 | SYS_LDFLAGS = -pdb:none -release -incremental:no -version:3.10 |
| 130 | !endif | 130 | !endif |
| 131 | 131 | ||
| 132 | INC = -I. | 132 | INC = -I. |
| @@ -149,8 +149,14 @@ $(BLD): $(OBJDIR) | |||
| 149 | CP = copy | 149 | CP = copy |
| 150 | CP_DIR = xcopy /f/r/i/e/d | 150 | CP_DIR = xcopy /f/r/i/e/d |
| 151 | 151 | ||
| 152 | !if "$(OS_TYPE)" == "win95" | ||
| 153 | DEL = deltree /y | ||
| 154 | DEL_TREE = deltree /y | ||
| 155 | !else | ||
| 156 | DEL = 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 |
| 153 | DEL_TREE = echo y | rmdir /s | 158 | DEL_TREE = echo y | rmdir /s |
| 159 | !endif | ||
| 154 | 160 | ||
| 155 | # The location of the icon file | 161 | # The location of the icon file |
| 156 | EMACS_ICON_PATH = ..\nt\emacs.ico | 162 | EMACS_ICON_PATH = ..\nt\emacs.ico |