changeset 35103:2ed117dc79cf

(EMACS_ICON_PATH): Delete definition. (COMPILER_TEMP_FILES): New definition. (MAKETYPE): New definition.
author Andrew Innes <andrewi@gnu.org>
date Sat, 06 Jan 2001 21:18:05 +0000
parents 3bb820a403c0
children 72dc0b4e554c
files nt/gmake.defs nt/nmake.defs
diffstat 2 files changed, 8 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/nt/gmake.defs	Sat Jan 06 21:16:37 2001 +0000
+++ b/nt/gmake.defs	Sat Jan 06 21:18:05 2001 +0000
@@ -76,6 +76,8 @@
 SETLOADPATH=EMACSLOADPATH=$(CURDIR)/../lisp
 endif
 
+MAKETYPE=gmake
+
 # Cygwin has changed quoting rules somewhat since b20, in a way that
 # affects makefiles using sh as the command processor, so we need to
 # detect which rules to use.
@@ -184,6 +186,8 @@
 $(BLD):         $(OBJDIR)
 		-mkdir "$(BLD)"
 
+COMPILER_TEMP_FILES =
+
 CP		= cp -f
 CP_DIR		= cp -rf
 DEL		= rm
@@ -217,9 +221,6 @@
 
 endif
 
-# The location of the icon file
-EMACS_ICON_PATH = ../nt/emacs.ico
-
 ifdef NODEBUG
 DEBUG_FLAG = 
 else
--- a/nt/nmake.defs	Sat Jan 06 21:16:37 2001 +0000
+++ b/nt/nmake.defs	Sat Jan 06 21:18:05 2001 +0000
@@ -22,6 +22,8 @@
 THE_SHELL = $(COMSPEC)
 SHELLTYPE=CMD
 
+MAKETYPE=nmake
+
 ALL_DEPS	= $**
 
 SUBSYSTEM_WINDOWS=-subsystem:windows
@@ -140,6 +142,8 @@
 $(BLD):         $(OBJDIR)
 		-mkdir "$(BLD)"
 
+COMPILER_TEMP_FILES = *.pdb
+
 CP		= cp -f
 CP_DIR		= cp -rf
 IFNOTSAMEDIR	= if not exist ..\same-dir.tst
@@ -153,9 +157,6 @@
 DEL		= rm
 DEL_TREE	= rm -r
 
-# The location of the icon file
-EMACS_ICON_PATH = ../nt/emacs.ico
-
 !ifdef NODEBUG
 DEBUG_FLAG = 
 !else