aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Innes1998-06-01 13:59:17 +0000
committerAndrew Innes1998-06-01 13:59:17 +0000
commitefca9fdc864c1d6fba5ae67950f760405f77f852 (patch)
treeee37f5d1e3746457e79c3dfc36d0dd65850d989f /src
parentad8cf30fea1d93e91952ab8eaa5ad5cf7e7c3365 (diff)
downloademacs-efca9fdc864c1d6fba5ae67950f760405f77f852.tar.gz
emacs-efca9fdc864c1d6fba5ae67950f760405f77f852.zip
(LOCAL_FLAGS): Define HAVE_NTGUI if appropriate.
Diffstat (limited to 'src')
-rw-r--r--src/makefile.nt5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/makefile.nt b/src/makefile.nt
index 7ecb6474f77..dcd528e9a9e 100644
--- a/src/makefile.nt
+++ b/src/makefile.nt
@@ -33,6 +33,9 @@ SUBSYSTEM=console
33# the emacs source tree. 33# the emacs source tree.
34# 34#
35LOCAL_FLAGS = -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I..\nt\inc 35LOCAL_FLAGS = -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I..\nt\inc
36!ifdef NTGUI
37LOCAL_FLAGS = $(LOCAL_FLAGS) -DHAVE_NTGUI=1
38!endif
36 39
37EMACS = $(BLD)\emacs.exe 40EMACS = $(BLD)\emacs.exe
38TEMACS = $(BLD)\temacs.exe 41TEMACS = $(BLD)\temacs.exe
@@ -55,7 +58,7 @@ TLASTLIB = $(BLD)\lastfile.lib
55# see comments in allocate_heap in w32heap.c before changing any of the 58# see comments in allocate_heap in w32heap.c before changing any of the
56# -stack, -heap, or -base settings. 59# -stack, -heap, or -base settings.
57!if "$(BUILD_TYPE)" == "spd" 60!if "$(BUILD_TYPE)" == "spd"
58LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -pdb:$(BLD)\temacs.pdb -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map 61LINK_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
59!else 62!else
60LINK_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 63LINK_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
61!endif 64!endif