aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGeoff Voelker1996-05-03 18:32:30 +0000
committerGeoff Voelker1996-05-03 18:32:30 +0000
commit2fd5e802b74c05dac1f6a61569fc2411d9e2e40b (patch)
tree0b3251d6ea45ad6897b2e2d4e996decd643bfc36 /src
parentc911543b1c6cb0c2e40b8e2d0df98a8c7a4b0fb0 (diff)
downloademacs-2fd5e802b74c05dac1f6a61569fc2411d9e2e40b.tar.gz
emacs-2fd5e802b74c05dac1f6a61569fc2411d9e2e40b.zip
(SUBSYSTEM) [NTGUI]: Remove conditional.
(LINK_FLAGS): Explicitly set base address, and stack and heap sizes. (nt.obj): Add dependency to nt.h.
Diffstat (limited to 'src')
-rw-r--r--src/makefile.nt10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/makefile.nt b/src/makefile.nt
index b4fe21fb139..5aabe8398e9 100644
--- a/src/makefile.nt
+++ b/src/makefile.nt
@@ -25,11 +25,7 @@
25# 25#
26!include ..\nt\makefile.def 26!include ..\nt\makefile.def
27 27
28!IFDEF NTGUI
29SUBSYSTEM=windows
30!ELSE
31SUBSYSTEM=console 28SUBSYSTEM=console
32!ENDIF
33 29
34# 30#
35# HAVE_CONFIG_H is required by some generic gnu sources stuck into 31# HAVE_CONFIG_H is required by some generic gnu sources stuck into
@@ -54,7 +50,9 @@ TRES = $(BLD)\emacs.rbj
54!endif 50!endif
55TLASTLIB = $(BLD)\lastfile.lib 51TLASTLIB = $(BLD)\lastfile.lib
56 52
57LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x1000000 -base:0xD00000 -debug:full -debugtype:cv -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map -map 53# see comments in allocate_heap in ntheap.c before changing any of the
54# -stack, -heap, or -base settings.
55LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -debugtype:cv -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map
58 56
59# 57#
60# Split up the objects into two sets so that we don't run out of 58# Split up the objects into two sets so that we don't run out of
@@ -139,6 +137,7 @@ LIBS = $(TLIB1) \
139 gdi32.lib \ 137 gdi32.lib \
140 comdlg32.lib \ 138 comdlg32.lib \
141!ENDIF 139!ENDIF
140# libcmt.lib \
142 $(BASE_LIBS) \ 141 $(BASE_LIBS) \
143 $(ADVAPI32) \ 142 $(ADVAPI32) \
144 user32.lib \ 143 user32.lib \
@@ -730,6 +729,7 @@ $(BLD)\mocklisp.obj : \
730 729
731$(BLD)\nt.obj : \ 730$(BLD)\nt.obj : \
732 $(SRC)\nt.c \ 731 $(SRC)\nt.c \
732 $(SRC)\nt.h \
733 $(SRC)\s\windowsnt.h \ 733 $(SRC)\s\windowsnt.h \
734 $(SRC)\m\intel386.h \ 734 $(SRC)\m\intel386.h \
735 $(SRC)\config.h \ 735 $(SRC)\config.h \