Mercurial > emacs
changeset 21602:c774fc879d96
(LINK_TYPE): Do not include debug info in optimized
binary.
(LIBS): Include mpr.lib.
(clean): Delete patch generated files, optimized build directory.
author | Geoff Voelker <voelker@cs.washington.edu> |
---|---|
date | Fri, 17 Apr 1998 05:05:40 +0000 |
parents | 9d378aaf7cd3 |
children | 058bff729a94 |
files | src/makefile.nt |
diffstat | 1 files changed, 12 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/makefile.nt Fri Apr 17 05:05:24 1998 +0000 +++ b/src/makefile.nt Fri Apr 17 05:05:40 1998 +0000 @@ -54,7 +54,11 @@ # see comments in allocate_heap in w32heap.c before changing any of the # -stack, -heap, or -base settings. +!if "$(BUILD_TYPE)" == "spd" +LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -pdb:$(BLD)\temacs.pdb -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map +!else LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -pdb:$(BLD)\temacs.pdb -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map +!endif # # Split up the objects into two sets so that we don't run out of @@ -154,7 +158,8 @@ $(BASE_LIBS) \ $(ADVAPI32) \ user32.lib \ - mpr.lib + mpr.lib \ + setargv.obj # # Build the executable and dump it. @@ -245,9 +250,13 @@ # # Maintenance # -clean:; - $(DEL) *~ *.pdb config.h paths.h +clean:; - $(DEL) *~ s\*~ + - $(DEL) *.pdb config.h paths.h + - $(DEL) *.orig *.rej *.crlf + - $(DEL) s\*.orig s\*.rej s\*.crlf - $(DEL_TREE) deleted - - $(DEL_TREE) $(OBJDIR) + - $(DEL_TREE) obj + - $(DEL_TREE) obj-spd # # These files are the ones that compile conditionally on CANNOT_DUMP...