diff options
author | Geoff Voelker <voelker@cs.washington.edu> | 1995-05-09 02:25:50 +0000 |
---|---|---|
committer | Geoff Voelker <voelker@cs.washington.edu> | 1995-05-09 02:25:50 +0000 |
commit | efdeeb2b7829d7e154a839696f5f66b05f425b41 (patch) | |
tree | 688a8c9b17993bd43dd652a6e23f37607a576404 /nt/makefile.def | |
parent | 8993dbcd7f69a5beeb3cf8dd0b154af6378a342d (diff) | |
download | emacs-efdeeb2b7829d7e154a839696f5f66b05f425b41.tar.gz |
removed ^Ms
Diffstat (limited to 'nt/makefile.def')
-rw-r--r-- | nt/makefile.def | 184 |
1 files changed, 92 insertions, 92 deletions
diff --git a/nt/makefile.def b/nt/makefile.def index f83143bf6a9..f1cfd80e6eb 100644 --- a/nt/makefile.def +++ b/nt/makefile.def @@ -1,92 +1,92 @@ -#
-# Makefile definition file for building GNU Emacs on Windows NT
-#
-# GNU Emacs is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
-# any later version.
-#
-# GNU Emacs is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with GNU Emacs; see the file COPYING. If not, write to
-# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
-#
-# Geoff Voelker (voelker@cs.washington.edu) 9-6-94
-
-#
-# BEGIN CONFIGURATION
-#
-
-#
-# Set ARCH to the architecture on which you're building (i386, mips, alpha).
-# Set SYS_INC_DIR and SYS_LIB_DIR to your system include and library dirs.
-#
-
-ARCH = mips
-SYS_INC_DIR = C:\mstools\h
-SYS_LIB_DIR = C:\mstools\lib
-
-# Set this to be the directory into which you want emacs installed
-INSTALL_DIR = C:\emacs
-
-# May need to be cl386.exe when using the SDK on an x86.
-CC = cl.exe
-
-# May need to be lib32.exe on NT 3.1, lib.exe on NT 3.5
-AR = lib32.exe
-
-MAKE = nmake.exe
-LINK = link32.exe
-
-# If you are using VC 2.0, define COMPAT_LIB (only tested on i386)
-#COMPAT_LIB = $(SYS_LIB_DIR)\oldnames.lib
-
-CVTRES = cvtres.exe
-
-#
-# END CONFIGURATION
-#
-# You shouldn't have to change any of the below to get emacs to build and
-# install on your system. If you did have to make changes, let me know.
-#
-
-INC = -I. -I$(SYS_INC_DIR) -I$(SYS_INC_DIR)\crt
-CFLAGS = -nologo $(INC) $(ARCH_CFLAGS) $(LOCAL_FLAGS) -DWIN32_LEAN_AND_MEAN -D$(ARCH)
-
-OBJDIR = obj
-$(OBJDIR):; -mkdir $(OBJDIR)
-BLD = $(OBJDIR)\$(ARCH)
-$(BLD): $(OBJDIR)
- -mkdir $(BLD)
-
-CP = copy
-CP_DIR = xcopy /fried
-
-# This is completely braindamaged, but it's the only routine known to be there
-DEL_TREE = echo y | rmdir /s
-
-!IF "$(ARCH)" == "i386"
-ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zel -W2 -H63 -G3d -Zi -Od
-ARCH_LDFLAGS = -align:0x1000
-
-!ELSE
-!IF "$(ARCH)" == "mips"
-CC = mcl.exe
-ARCH_CFLAGS = -D_MIPS_=1 -c -W2 -Zi -Od -Gt0 -D__stdcall= -D__cdecl=
-ARCH_LDFLAGS = -align:0x1000
-
-!ELSE
-!IF "$(ARCH)" == "alpha"
-CC = claxp.exe
-ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -D__stdcall= -D__cdecl=
-ARCH_LDFLAGS = -align:0x2000
-
-!ELSE
-!ERROR Unknown architecture type.
-!ENDIF
-!ENDIF
-!ENDIF
+# +# Makefile definition file for building GNU Emacs on Windows NT +# +# GNU Emacs is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# GNU Emacs is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GNU Emacs; see the file COPYING. If not, write to +# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +# +# Geoff Voelker (voelker@cs.washington.edu) 9-6-94 + +# +# BEGIN CONFIGURATION +# + +# +# Set ARCH to the architecture on which you're building (i386, mips, alpha). +# Set SYS_INC_DIR and SYS_LIB_DIR to your system include and library dirs. +# + +ARCH = mips +SYS_INC_DIR = C:\mstools\h +SYS_LIB_DIR = C:\mstools\lib + +# Set this to be the directory into which you want emacs installed +INSTALL_DIR = C:\emacs + +# May need to be cl386.exe when using the SDK on an x86. +CC = cl.exe + +# May need to be lib32.exe on NT 3.1, lib.exe on NT 3.5 +AR = lib32.exe + +MAKE = nmake.exe +LINK = link32.exe + +# If you are using VC 2.0, define COMPAT_LIB (only tested on i386) +#COMPAT_LIB = $(SYS_LIB_DIR)\oldnames.lib + +CVTRES = cvtres.exe + +# +# END CONFIGURATION +# +# You shouldn't have to change any of the below to get emacs to build and +# install on your system. If you did have to make changes, let me know. +# + +INC = -I. -I$(SYS_INC_DIR) -I$(SYS_INC_DIR)\crt +CFLAGS = -nologo $(INC) $(ARCH_CFLAGS) $(LOCAL_FLAGS) -DWIN32_LEAN_AND_MEAN -D$(ARCH) + +OBJDIR = obj +$(OBJDIR):; -mkdir $(OBJDIR) +BLD = $(OBJDIR)\$(ARCH) +$(BLD): $(OBJDIR) + -mkdir $(BLD) + +CP = copy +CP_DIR = xcopy /fried + +# This is completely braindamaged, but it's the only routine known to be there +DEL_TREE = echo y | rmdir /s + +!IF "$(ARCH)" == "i386" +ARCH_CFLAGS = -nologo -D_X86_=1 -c -Zel -W2 -H63 -G3d -Zi -Od +ARCH_LDFLAGS = -align:0x1000 + +!ELSE +!IF "$(ARCH)" == "mips" +CC = mcl.exe +ARCH_CFLAGS = -D_MIPS_=1 -c -W2 -Zi -Od -Gt0 -D__stdcall= -D__cdecl= +ARCH_LDFLAGS = -align:0x1000 + +!ELSE +!IF "$(ARCH)" == "alpha" +CC = claxp.exe +ARCH_CFLAGS = -D_ALPHA_=1 -c -Ze -Zi -W2 -D__stdcall= -D__cdecl= +ARCH_LDFLAGS = -align:0x2000 + +!ELSE +!ERROR Unknown architecture type. +!ENDIF +!ENDIF +!ENDIF |