diff options
| author | Geoff Voelker | 1995-11-07 07:57:05 +0000 |
|---|---|---|
| committer | Geoff Voelker | 1995-11-07 07:57:05 +0000 |
| commit | 0492cf29a875ef32a2a81f5bd9783bf903fd6d65 (patch) | |
| tree | 97fcb1152e8b9560b880e4fd923e3aa147dc2776 | |
| parent | bcfb775c263aa63498cd41edadd34408b64a0677 (diff) | |
| download | emacs-0492cf29a875ef32a2a81f5bd9783bf903fd6d65.tar.gz emacs-0492cf29a875ef32a2a81f5bd9783bf903fd6d65.zip | |
(NTGUI): New macro.
[NTGUI] (CFLAGS): Define HAVE_NTGUI.
| -rw-r--r-- | nt/makefile.def | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/nt/makefile.def b/nt/makefile.def index 39717c24cdb..9d18d00b271 100644 --- a/nt/makefile.def +++ b/nt/makefile.def | |||
| @@ -21,6 +21,10 @@ | |||
| 21 | # BEGIN CONFIGURATION | 21 | # BEGIN CONFIGURATION |
| 22 | # | 22 | # |
| 23 | 23 | ||
| 24 | # Define the following to build the GUI version | ||
| 25 | # | ||
| 26 | NTGUI=1 | ||
| 27 | |||
| 24 | # Set INSTALL_DIR to be the directory into which you want emacs installed. | 28 | # Set INSTALL_DIR to be the directory into which you want emacs installed. |
| 25 | # | 29 | # |
| 26 | !ifndef INSTALL_DIR | 30 | !ifndef INSTALL_DIR |
| @@ -131,6 +135,9 @@ CFLAGS = $(CFLAGS_COMMON) -D_CRTAPI1=_cdecl | |||
| 131 | !else | 135 | !else |
| 132 | CFLAGS = $(CFLAGS_COMMON) | 136 | CFLAGS = $(CFLAGS_COMMON) |
| 133 | !endif | 137 | !endif |
| 138 | !ifdef NTGUI | ||
| 139 | CFLAGS = $(CFLAGS) -DHAVE_NTGUI=1 | ||
| 140 | !endif | ||
| 134 | 141 | ||
| 135 | OBJDIR = obj | 142 | OBJDIR = obj |
| 136 | $(OBJDIR):; -mkdir $(OBJDIR) | 143 | $(OBJDIR):; -mkdir $(OBJDIR) |