# HG changeset patch # User Geoff Voelker <voelker@cs.washington.edu> # Date 892789540 0 # Node ID c774fc879d96a8a2be9bb1936e711f7ce328dc5d # Parent 9d378aaf7cd3b4d61c776306210e0d68ceec94f9 (LINK_TYPE): Do not include debug info in optimized binary. (LIBS): Include mpr.lib. (clean): Delete patch generated files, optimized build directory. diff -r 9d378aaf7cd3 -r c774fc879d96 src/makefile.nt --- 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...