Mercurial > emacs
annotate src/makefile.nt @ 24379:18002ef8ce0d
(EXTRA_LINK): Do version test with strings.
| author | Andrew Innes <andrewi@gnu.org> |
|---|---|
| date | Mon, 22 Feb 1999 12:46:52 +0000 |
| parents | de406600b275 |
| children | 3e294a7e67de |
| rev | line source |
|---|---|
|
16888
380c7e461c14
Use new name w32gui.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16593
diff
changeset
|
1 # Makefile for GNU Emacs on the Microsoft W32 API. |
| 11383 | 2 # Copyright (c) 1992, 1993, 1994, 1995 Free Software Foundation, Inc. |
| 3 # Tim Fleehart (apollo@online.com) 17-Apr-92 | |
| 4 # Geoff Voelker (voelker@cs.washington.edu) 11-20-93 | |
| 9803 | 5 # |
| 6 # This file is part of GNU Emacs. | |
| 7 # | |
| 8 # GNU Emacs is free software; you can redistribute it and/or modify | |
| 9 # it under the terms of the GNU General Public License as published by | |
| 10 # the Free Software Foundation; either version 2, or (at your option) | |
| 11 # any later version. | |
| 12 # | |
| 13 # GNU Emacs is distributed in the hope that it will be useful, | |
| 14 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 16 # GNU General Public License for more details. | |
| 17 # | |
| 18 # You should have received a copy of the GNU General Public License | |
| 15742 | 19 # along with GNU Emacs; see the file COPYING. If not, write to the |
| 20 # Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 21 # Boston, MA 02111-1307, USA. | |
| 9803 | 22 # |
| 23 | |
| 24 # | |
| 25 # Sets up the system dependent macros. | |
| 26 # | |
| 27 !include ..\nt\makefile.def | |
| 28 | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
29 SUBSYSTEM=console |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
30 |
| 9803 | 31 # |
| 32 # HAVE_CONFIG_H is required by some generic gnu sources stuck into | |
| 33 # the emacs source tree. | |
| 34 # | |
| 11383 | 35 LOCAL_FLAGS = -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I..\nt\inc |
|
22313
7139cd22a2f7
(LOCAL_FLAGS): Define HAVE_NTGUI if appropriate.
Andrew Innes <andrewi@gnu.org>
parents:
21890
diff
changeset
|
36 !ifdef NTGUI |
|
7139cd22a2f7
(LOCAL_FLAGS): Define HAVE_NTGUI if appropriate.
Andrew Innes <andrewi@gnu.org>
parents:
21890
diff
changeset
|
37 LOCAL_FLAGS = $(LOCAL_FLAGS) -DHAVE_NTGUI=1 |
|
7139cd22a2f7
(LOCAL_FLAGS): Define HAVE_NTGUI if appropriate.
Andrew Innes <andrewi@gnu.org>
parents:
21890
diff
changeset
|
38 !endif |
| 9803 | 39 |
|
24365
9f92c0ff8fe8
(EXTRA_LINK, LINK_FLAGS): Ensure base relocation
Andrew Innes <andrewi@gnu.org>
parents:
24247
diff
changeset
|
40 # From MSVC 5.0 onwards, it seem base relocation information is not included, |
|
9f92c0ff8fe8
(EXTRA_LINK, LINK_FLAGS): Ensure base relocation
Andrew Innes <andrewi@gnu.org>
parents:
24247
diff
changeset
|
41 # at least in release builds. We need to ensure the reloc info is included |
|
9f92c0ff8fe8
(EXTRA_LINK, LINK_FLAGS): Ensure base relocation
Andrew Innes <andrewi@gnu.org>
parents:
24247
diff
changeset
|
42 # in order to use the MSVC profiler. |
|
24379
18002ef8ce0d
(EXTRA_LINK): Do version test with strings.
Andrew Innes <andrewi@gnu.org>
parents:
24378
diff
changeset
|
43 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)") |
|
24365
9f92c0ff8fe8
(EXTRA_LINK, LINK_FLAGS): Ensure base relocation
Andrew Innes <andrewi@gnu.org>
parents:
24247
diff
changeset
|
44 EXTRA_LINK = |
|
9f92c0ff8fe8
(EXTRA_LINK, LINK_FLAGS): Ensure base relocation
Andrew Innes <andrewi@gnu.org>
parents:
24247
diff
changeset
|
45 !ELSE |
|
9f92c0ff8fe8
(EXTRA_LINK, LINK_FLAGS): Ensure base relocation
Andrew Innes <andrewi@gnu.org>
parents:
24247
diff
changeset
|
46 EXTRA_LINK = -profile |
|
9f92c0ff8fe8
(EXTRA_LINK, LINK_FLAGS): Ensure base relocation
Andrew Innes <andrewi@gnu.org>
parents:
24247
diff
changeset
|
47 !ENDIF |
|
9f92c0ff8fe8
(EXTRA_LINK, LINK_FLAGS): Ensure base relocation
Andrew Innes <andrewi@gnu.org>
parents:
24247
diff
changeset
|
48 |
| 9803 | 49 EMACS = $(BLD)\emacs.exe |
| 50 TEMACS = $(BLD)\temacs.exe | |
| 24100 | 51 TEMACS_TMP = $(BLD)\temacs.bin |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
52 TLIB0 = $(BLD)\temacs0.lib |
| 11742 | 53 TLIB1 = $(BLD)\temacs1.lib |
| 54 TLIB2 = $(BLD)\temacs2.lib | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
55 !IFDEF NTGUI |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
56 TLIBW32 = $(BLD)\temacw32.lib |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
57 !ELSE |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
58 TLIBW32 = |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
59 !ENDIF |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
60 TOBJ = $(BLD)\firstfile.obj |
|
12240
15c642f6c1a1
(TRES) [MSVCNT11]: Use emacs.res, and don't compile it.
Richard M. Stallman <rms@gnu.org>
parents:
12178
diff
changeset
|
61 !if $(MSVCNT11) |
|
15c642f6c1a1
(TRES) [MSVCNT11]: Use emacs.res, and don't compile it.
Richard M. Stallman <rms@gnu.org>
parents:
12178
diff
changeset
|
62 TRES = $(BLD)\emacs.res |
|
15c642f6c1a1
(TRES) [MSVCNT11]: Use emacs.res, and don't compile it.
Richard M. Stallman <rms@gnu.org>
parents:
12178
diff
changeset
|
63 !else |
| 11742 | 64 TRES = $(BLD)\emacs.rbj |
|
12240
15c642f6c1a1
(TRES) [MSVCNT11]: Use emacs.res, and don't compile it.
Richard M. Stallman <rms@gnu.org>
parents:
12178
diff
changeset
|
65 !endif |
|
12453
8e4f8107dcd0
(EMACS) [win95]: Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12240
diff
changeset
|
66 TLASTLIB = $(BLD)\lastfile.lib |
| 9803 | 67 |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
68 # see comments in allocate_heap in w32heap.c before changing any of the |
|
15140
f13ffba51542
(SUBSYSTEM) [NTGUI]: Remove conditional.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
69 # -stack, -heap, or -base settings. |
|
21602
c774fc879d96
(LINK_TYPE): Do not include debug info in optimized
Geoff Voelker <voelker@cs.washington.edu>
parents:
20340
diff
changeset
|
70 !if "$(BUILD_TYPE)" == "spd" |
|
22434
e283153313b6
(LINK_FLAGS): Place debug info in executable in
Geoff Voelker <voelker@cs.washington.edu>
parents:
22313
diff
changeset
|
71 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 -swaprun:net -swaprun:cd |
|
21602
c774fc879d96
(LINK_TYPE): Do not include debug info in optimized
Geoff Voelker <voelker@cs.washington.edu>
parents:
20340
diff
changeset
|
72 !else |
|
24365
9f92c0ff8fe8
(EXTRA_LINK, LINK_FLAGS): Ensure base relocation
Andrew Innes <andrewi@gnu.org>
parents:
24247
diff
changeset
|
73 LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -debugtype:both -pdb:none -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map -swaprun:net -swaprun:cd $(EXTRA_LINK) |
|
21602
c774fc879d96
(LINK_TYPE): Do not include debug info in optimized
Geoff Voelker <voelker@cs.washington.edu>
parents:
20340
diff
changeset
|
74 !endif |
| 9803 | 75 |
| 76 # | |
| 77 # Split up the objects into two sets so that we don't run out of | |
| 78 # command line space when we link them into a library. | |
| 79 # | |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
80 # Put emacs.obj in a separate lib, since we need to have firstfile.obj |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
81 # as the "main" object file when linking. |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
82 # |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
83 OBJ0 = $(BLD)\emacs.obj |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
84 |
| 9803 | 85 OBJ1 = $(BLD)\abbrev.obj \ |
| 86 $(BLD)\alloc.obj \ | |
| 87 $(BLD)\alloca.obj \ | |
| 88 $(BLD)\buffer.obj \ | |
| 89 $(BLD)\bytecode.obj \ | |
| 90 $(BLD)\callint.obj \ | |
| 91 $(BLD)\callproc.obj \ | |
| 92 $(BLD)\casefiddle.obj \ | |
| 93 $(BLD)\cm.obj \ | |
| 94 $(BLD)\cmds.obj \ | |
| 95 $(BLD)\data.obj \ | |
| 96 $(BLD)\dired.obj \ | |
| 97 $(BLD)\dispnew.obj \ | |
| 98 $(BLD)\doc.obj \ | |
| 99 $(BLD)\doprnt.obj \ | |
| 100 $(BLD)\editfns.obj \ | |
| 101 $(BLD)\eval.obj \ | |
| 102 $(BLD)\fileio.obj \ | |
| 103 $(BLD)\filelock.obj \ | |
| 104 $(BLD)\filemode.obj \ | |
| 105 $(BLD)\fns.obj \ | |
| 106 $(BLD)\indent.obj \ | |
| 107 $(BLD)\insdel.obj \ | |
| 108 $(BLD)\keyboard.obj \ | |
| 109 $(BLD)\keymap.obj \ | |
| 110 $(BLD)\lread.obj \ | |
| 111 $(BLD)\macros.obj \ | |
| 112 $(BLD)\marker.obj \ | |
| 113 $(BLD)\minibuf.obj \ | |
| 114 $(BLD)\mocklisp.obj | |
| 115 | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
116 OBJ2 = $(BLD)\w32.obj \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
117 $(BLD)\w32heap.obj \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
118 $(BLD)\w32inevt.obj \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
119 $(BLD)\w32proc.obj \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
120 $(BLD)\w32console.obj \ |
| 9803 | 121 $(BLD)\print.obj \ |
| 122 $(BLD)\process.obj \ | |
| 123 $(BLD)\regex.obj \ | |
| 124 $(BLD)\scroll.obj \ | |
| 125 $(BLD)\search.obj \ | |
| 126 $(BLD)\syntax.obj \ | |
| 127 $(BLD)\sysdep.obj \ | |
| 128 $(BLD)\term.obj \ | |
| 129 $(BLD)\termcap.obj \ | |
| 130 $(BLD)\tparam.obj \ | |
| 131 $(BLD)\undo.obj \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
132 $(BLD)\unexw32.obj \ |
| 9803 | 133 $(BLD)\window.obj \ |
| 134 $(BLD)\xdisp.obj \ | |
| 135 $(BLD)\casetab.obj \ | |
| 136 $(BLD)\floatfns.obj \ | |
| 137 $(BLD)\frame.obj \ | |
| 138 $(BLD)\gmalloc.obj \ | |
| 139 $(BLD)\intervals.obj \ | |
| 140 $(BLD)\ralloc.obj \ | |
| 141 $(BLD)\textprop.obj \ | |
| 11383 | 142 $(BLD)\vm-limit.obj \ |
| 143 $(BLD)\region-cache.obj \ | |
|
18505
ca4d948da78d
(OBJ2): Include new source files.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16888
diff
changeset
|
144 $(BLD)\strftime.obj \ |
|
ca4d948da78d
(OBJ2): Include new source files.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16888
diff
changeset
|
145 $(BLD)\charset.obj \ |
|
ca4d948da78d
(OBJ2): Include new source files.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16888
diff
changeset
|
146 $(BLD)\coding.obj \ |
|
ca4d948da78d
(OBJ2): Include new source files.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16888
diff
changeset
|
147 $(BLD)\category.obj \ |
|
ca4d948da78d
(OBJ2): Include new source files.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16888
diff
changeset
|
148 $(BLD)\ccl.obj \ |
|
ca4d948da78d
(OBJ2): Include new source files.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16888
diff
changeset
|
149 $(BLD)\fontset.obj |
| 9803 | 150 |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
151 WIN32OBJ = $(BLD)\w32term.obj \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
152 $(BLD)\w32xfns.obj \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
153 $(BLD)\w32fns.obj \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
154 $(BLD)\w32faces.obj \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
155 $(BLD)\w32select.obj \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
156 $(BLD)\w32menu.obj \ |
|
24143
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
157 $(BLD)\w32reg.obj \ |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
158 $(BLD)\w32bdf.obj |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
159 |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
160 LIBS = $(TLIB0) \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
161 $(TLIB1) \ |
|
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
162 $(TLIB2) \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
163 !IFDEF NTGUI |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
164 $(TLIBW32) \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
165 !ENDIF |
|
12453
8e4f8107dcd0
(EMACS) [win95]: Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12240
diff
changeset
|
166 $(TLASTLIB) \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
167 !IFDEF NTGUI |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
168 gdi32.lib \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
169 comdlg32.lib \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
170 !ENDIF |
|
15140
f13ffba51542
(SUBSYSTEM) [NTGUI]: Remove conditional.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
171 # libcmt.lib \ |
|
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
172 $(BASE_LIBS) \ |
|
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
173 $(ADVAPI32) \ |
|
14247
63cada85e5fd
(keyboard.obj, dispnew.obj): Depend upon w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13829
diff
changeset
|
174 user32.lib \ |
|
21602
c774fc879d96
(LINK_TYPE): Do not include debug info in optimized
Geoff Voelker <voelker@cs.washington.edu>
parents:
20340
diff
changeset
|
175 mpr.lib \ |
|
21890
f28b2d5e921b
(LIBS): Link in shell32.lib.
Richard M. Stallman <rms@gnu.org>
parents:
21602
diff
changeset
|
176 shell32.lib \ |
|
21602
c774fc879d96
(LINK_TYPE): Do not include debug info in optimized
Geoff Voelker <voelker@cs.washington.edu>
parents:
20340
diff
changeset
|
177 setargv.obj |
| 9803 | 178 |
| 179 # | |
| 180 # Build the executable and dump it. | |
| 181 # | |
| 182 all: $(BLD) $(EMACS) | |
| 183 | |
| 184 # | |
| 185 # Headers we would preprocess if we could. | |
| 186 # | |
| 187 PREPARED_HEADERS = config.h paths.h | |
|
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
188 config.h: ..\nt\$(CONFIG_H) |
|
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
189 $(CP) $** $@ |
| 11383 | 190 paths.h: ..\nt\paths.h |
|
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
191 $(CP) $** $@ |
| 11383 | 192 |
| 193 # | |
| 194 # Make sure we have the DOC file in the right place. | |
| 195 # | |
|
15721
6d54ca02c76d
(DOC, clean): Use OBJDIR macro.
Karl Heuer <kwzh@gnu.org>
parents:
15238
diff
changeset
|
196 DOC = $(OBJDIR)\etc\DOC-X |
| 11383 | 197 $(DOC):; cd ..\lib-src |
|
14899
4b7b8a937a5d
Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents:
14247
diff
changeset
|
198 - $(DEL) DOC-X |
| 11383 | 199 $(MAKE) -f makefile.nt all |
| 200 cd ..\src | |
| 9803 | 201 |
| 202 # | |
| 203 # The dumped executable | |
| 204 # | |
| 205 emacs: $(EMACS) | |
| 11383 | 206 $(EMACS): $(PREPARED_HEADERS) $(DOC) $(TEMACS) |
| 9803 | 207 cd $(BLD) |
|
24247
90729d756198
Use full path to temacs.exe when dumping.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24205
diff
changeset
|
208 $(MAKEDIR)\$(BLD)\temacs.exe -batch -l loadup dump |
| 9803 | 209 cd ..\.. |
| 210 | |
| 211 # | |
| 212 # The undumped executable | |
| 24100 | 213 # Note the extra post-link step to insert a static preload heap section. |
| 214 # If preload runs out of memory, increase the last argument to addsection | |
| 215 # (it is the preload heap size in MB). | |
| 9803 | 216 # |
|
12178
fc00a306b890
(TEMACS): Depend upon $(BLD).
Geoff Voelker <voelker@cs.washington.edu>
parents:
11940
diff
changeset
|
217 temacs: $(BLD) $(TEMACS) |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
218 $(TEMACS): $(TLIB0) $(TLIB1) $(TLIB2) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES) |
| 24100 | 219 $(LINK) -out:$(TEMACS_TMP) $(LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS) |
| 220 ..\nt\$(BLD)\addsection $(TEMACS_TMP) $(TEMACS) EMHEAP 16 | |
| 11742 | 221 |
| 222 # | |
|
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
223 # The resource file. NT 3.10 requires the use of cvtres; even though |
|
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
224 # it is not necessary on later versions, it is still ok to use it. |
| 11742 | 225 # |
| 226 $(TRES): ..\nt\emacs.rc | |
| 227 $(RC) -i..\nt -Fo$(BLD)\emacs.res $** | |
|
12240
15c642f6c1a1
(TRES) [MSVCNT11]: Use emacs.res, and don't compile it.
Richard M. Stallman <rms@gnu.org>
parents:
12178
diff
changeset
|
228 !if !$(MSVCNT11) |
| 11742 | 229 $(CVTRES) -r -$(ARCH) -o $@ $(BLD)\emacs.res |
|
12240
15c642f6c1a1
(TRES) [MSVCNT11]: Use emacs.res, and don't compile it.
Richard M. Stallman <rms@gnu.org>
parents:
12178
diff
changeset
|
230 !endif |
| 9803 | 231 |
| 232 # | |
| 233 # Build the library. Split up the build into two phases...otherwise we | |
| 234 # run out of command line space. | |
| 235 # | |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
236 $(TLIB0): $(OBJ0) |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
237 @- $(AR) -out:$@ $** |
| 11742 | 238 $(TLIB1): $(OBJ1) |
| 239 @- $(AR) -out:$@ $** | |
| 240 $(TLIB2): $(OBJ2) | |
| 241 @- $(AR) -out:$@ $** | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
242 !IFDEF NTGUI |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
243 $(TLIBW32): $(WIN32OBJ) |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
244 @- $(AR) -out:$@ $** |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
245 !ENDIF |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
246 |
|
12453
8e4f8107dcd0
(EMACS) [win95]: Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12240
diff
changeset
|
247 # |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
248 # Place lastfile.obj in its own library so that it can be loaded after |
|
12453
8e4f8107dcd0
(EMACS) [win95]: Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12240
diff
changeset
|
249 # the source libraries but before any system libraries. Doing so defines |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
250 # the end of Emacs' data section portably across compilers and systems. |
|
12453
8e4f8107dcd0
(EMACS) [win95]: Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12240
diff
changeset
|
251 # |
|
8e4f8107dcd0
(EMACS) [win95]: Removed.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12240
diff
changeset
|
252 $(TLASTLIB): $(BLD)\lastfile.obj |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
253 @- $(AR) -out:$@ $** |
| 9803 | 254 |
| 255 # | |
| 256 # Object files. | |
| 257 # | |
|
24205
da51e8d5c359
Do make version comparison as strings.
Andrew Innes <andrewi@gnu.org>
parents:
24143
diff
changeset
|
258 !IF ("$(_NMAKE_VER)" == "$(_NMAKE_VER_4)") |
| 9803 | 259 .c{$(BLD)}.obj: |
|
23626
9e10a92252d9
Compile multiple source files when possible.
Geoff Voelker <voelker@cs.washington.edu>
parents:
23504
diff
changeset
|
260 $(CC) $(CFLAGS) -Fo$(OBJDIR)\i386\ $< |
|
9e10a92252d9
Compile multiple source files when possible.
Geoff Voelker <voelker@cs.washington.edu>
parents:
23504
diff
changeset
|
261 !ELSE |
|
9e10a92252d9
Compile multiple source files when possible.
Geoff Voelker <voelker@cs.washington.edu>
parents:
23504
diff
changeset
|
262 .c{$(BLD)}.obj:: |
|
9e10a92252d9
Compile multiple source files when possible.
Geoff Voelker <voelker@cs.washington.edu>
parents:
23504
diff
changeset
|
263 $(CC) $(CFLAGS) -Fo$(OBJDIR)\i386\ $< |
|
9e10a92252d9
Compile multiple source files when possible.
Geoff Voelker <voelker@cs.washington.edu>
parents:
23504
diff
changeset
|
264 !ENDIF |
| 9803 | 265 |
| 266 # | |
| 267 # Assuming INSTALL_DIR is defined, build and install emacs in it. | |
| 268 # | |
| 269 install: all | |
| 270 - mkdir $(INSTALL_DIR)\bin | |
| 271 $(CP) $(EMACS) $(INSTALL_DIR)\bin | |
| 272 | |
| 273 # | |
| 274 # Maintenance | |
| 275 # | |
|
21602
c774fc879d96
(LINK_TYPE): Do not include debug info in optimized
Geoff Voelker <voelker@cs.washington.edu>
parents:
20340
diff
changeset
|
276 clean:; - $(DEL) *~ s\*~ |
|
c774fc879d96
(LINK_TYPE): Do not include debug info in optimized
Geoff Voelker <voelker@cs.washington.edu>
parents:
20340
diff
changeset
|
277 - $(DEL) *.pdb config.h paths.h |
|
c774fc879d96
(LINK_TYPE): Do not include debug info in optimized
Geoff Voelker <voelker@cs.washington.edu>
parents:
20340
diff
changeset
|
278 - $(DEL) *.orig *.rej *.crlf |
|
c774fc879d96
(LINK_TYPE): Do not include debug info in optimized
Geoff Voelker <voelker@cs.washington.edu>
parents:
20340
diff
changeset
|
279 - $(DEL) s\*.orig s\*.rej s\*.crlf |
| 11383 | 280 - $(DEL_TREE) deleted |
|
21602
c774fc879d96
(LINK_TYPE): Do not include debug info in optimized
Geoff Voelker <voelker@cs.washington.edu>
parents:
20340
diff
changeset
|
281 - $(DEL_TREE) obj |
|
c774fc879d96
(LINK_TYPE): Do not include debug info in optimized
Geoff Voelker <voelker@cs.washington.edu>
parents:
20340
diff
changeset
|
282 - $(DEL_TREE) obj-spd |
| 9803 | 283 |
| 284 # | |
| 285 # These files are the ones that compile conditionally on CANNOT_DUMP... | |
| 286 # this target is mostly used for debugging. | |
| 287 # | |
|
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
288 cleandump:; cd $(BLD) |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
289 - $(DEL) callproc.obj data.obj dispnew.obj doc.obj editfns.obj emacs.obj lread.obj process.obj sysdep.obj term.obj w32heap.obj unexw32.obj |
|
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
290 cd ..\.. |
| 9803 | 291 |
| 292 | |
| 293 ### DEPENDENCIES ### | |
| 294 | |
| 295 EMACS_ROOT = .. | |
| 296 SRC = . | |
| 297 | |
| 298 $(BLD)\abbrev.obj : \ | |
| 299 $(SRC)\abbrev.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
300 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
301 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 302 $(EMACS_ROOT)\src\config.h \ |
| 303 $(SRC)\lisp.h \ | |
| 304 $(SRC)\commands.h \ | |
| 305 $(SRC)\buffer.h \ | |
| 306 $(SRC)\window.h | |
| 307 | |
| 308 $(BLD)\alloc.obj : \ | |
| 309 $(SRC)\alloc.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
310 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
311 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 312 $(EMACS_ROOT)\src\config.h \ |
| 313 $(SRC)\lisp.h \ | |
| 314 $(SRC)\dispextern.h \ | |
| 315 $(SRC)\intervals.h \ | |
| 316 $(SRC)\puresize.h \ | |
| 317 $(SRC)\buffer.h \ | |
| 318 $(SRC)\window.h \ | |
| 319 $(SRC)\frame.h \ | |
| 320 $(SRC)\blockinput.h \ | |
| 321 $(SRC)\syssignal.h | |
| 322 | |
| 323 $(BLD)\alloca.obj : \ | |
| 324 $(SRC)\alloca.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
325 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
326 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 327 $(EMACS_ROOT)\src\config.h \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
328 $(SRC)\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
329 $(SRC)\m\intel386.h \ |
| 9803 | 330 $(SRC)\config.h \ |
| 331 $(SRC)\blockinput.h | |
| 332 | |
| 333 $(BLD)\buffer.obj : \ | |
| 334 $(SRC)\buffer.c \ | |
| 335 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
336 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
337 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 338 $(EMACS_ROOT)\src\config.h \ |
| 339 $(SRC)\lisp.h \ | |
| 340 $(SRC)\dispextern.h \ | |
| 341 $(SRC)\intervals.h \ | |
| 342 $(SRC)\window.h \ | |
| 343 $(SRC)\commands.h \ | |
| 344 $(SRC)\buffer.h \ | |
| 345 $(SRC)\indent.h \ | |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
346 $(SRC)\blockinput.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
347 $(SRC)\region-cache.h |
| 9803 | 348 |
| 349 $(BLD)\bytecode.obj : \ | |
| 350 $(SRC)\bytecode.c \ | |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
351 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
352 $(EMACS_ROOT)\src\m\intel386.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
353 $(EMACS_ROOT)\src\config.h \ |
| 9803 | 354 $(SRC)\lisp.h \ |
| 355 $(SRC)\buffer.h \ | |
| 356 $(SRC)\syntax.h | |
| 357 | |
| 358 $(BLD)\callint.obj : \ | |
| 359 $(SRC)\callint.c \ | |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
360 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
361 $(EMACS_ROOT)\src\m\intel386.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
362 $(EMACS_ROOT)\src\config.h \ |
| 9803 | 363 $(SRC)\lisp.h \ |
| 364 $(SRC)\buffer.h \ | |
| 365 $(SRC)\commands.h \ | |
| 366 $(SRC)\keyboard.h \ | |
| 367 $(SRC)\window.h \ | |
| 368 $(SRC)\mocklisp.h | |
| 369 | |
| 370 $(BLD)\callproc.obj : \ | |
| 371 $(SRC)\callproc.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
372 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
373 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 374 $(EMACS_ROOT)\src\config.h \ |
| 375 $(SRC)\msdos.h \ | |
| 376 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
| 377 $(SRC)\lisp.h \ | |
| 378 $(SRC)\commands.h \ | |
| 379 $(SRC)\buffer.h \ | |
| 380 $(SRC)\process.h \ | |
| 381 $(SRC)\syssignal.h \ | |
| 382 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 383 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 384 $(SRC)\systty.h | |
| 385 | |
| 386 $(BLD)\casefiddle.obj : \ | |
| 387 $(SRC)\casefiddle.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
388 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
389 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 390 $(EMACS_ROOT)\src\config.h \ |
| 391 $(SRC)\lisp.h \ | |
| 392 $(SRC)\buffer.h \ | |
| 393 $(SRC)\commands.h \ | |
| 394 $(SRC)\syntax.h | |
| 395 $(CC) $(CFLAGS) -Fo$@ casefiddle.c | |
| 396 | |
| 397 $(BLD)\casetab.obj : \ | |
| 398 $(SRC)\casetab.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
399 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
400 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 401 $(EMACS_ROOT)\src\config.h \ |
| 402 $(SRC)\lisp.h \ | |
| 403 $(SRC)\buffer.h | |
| 404 | |
| 405 $(BLD)\cm.obj : \ | |
| 406 $(SRC)\cm.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
407 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
408 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 409 $(EMACS_ROOT)\src\config.h \ |
| 410 $(SRC)\cm.h \ | |
| 411 $(SRC)\termhooks.h | |
| 412 | |
| 413 $(BLD)\cmds.obj : \ | |
| 414 $(SRC)\cmds.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
415 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
416 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 417 $(EMACS_ROOT)\src\config.h \ |
| 418 $(SRC)\lisp.h \ | |
| 419 $(SRC)\commands.h \ | |
| 420 $(SRC)\buffer.h \ | |
| 421 $(SRC)\syntax.h | |
| 422 | |
| 423 $(BLD)\data.obj : \ | |
| 424 $(SRC)\data.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
425 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
426 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 427 $(EMACS_ROOT)\src\config.h \ |
| 428 $(SRC)\lisp.h \ | |
| 429 $(SRC)\puresize.h \ | |
| 430 $(SRC)\buffer.h \ | |
| 431 $(SRC)\syssignal.h | |
| 432 | |
| 433 $(BLD)\dired.obj : \ | |
| 434 $(SRC)\dired.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
435 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
436 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 437 $(EMACS_ROOT)\src\config.h \ |
| 438 $(SRC)\vmsdir.h \ | |
| 439 $(SRC)\ndir.h \ | |
| 440 $(SRC)\lisp.h \ | |
| 441 $(SRC)\buffer.h \ | |
| 442 $(SRC)\commands.h \ | |
| 443 $(SRC)\regex.h | |
| 444 | |
| 445 $(BLD)\dispnew.obj : \ | |
| 446 $(SRC)\dispnew.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
447 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
448 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 449 $(EMACS_ROOT)\src\config.h \ |
| 450 $(SRC)\lisp.h \ | |
| 451 $(SRC)\termchar.h \ | |
| 452 $(SRC)\termopts.h \ | |
| 453 $(SRC)\termhooks.h \ | |
| 454 $(SRC)\cm.h \ | |
| 455 $(SRC)\buffer.h \ | |
| 456 $(SRC)\frame.h \ | |
| 457 $(SRC)\window.h \ | |
| 458 $(SRC)\commands.h \ | |
| 459 $(SRC)\disptab.h \ | |
| 460 $(SRC)\indent.h \ | |
| 461 $(SRC)\dispextern.h \ | |
| 462 $(SRC)\intervals.h \ | |
| 463 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 464 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 465 $(SRC)\systty.h \ | |
|
14247
63cada85e5fd
(keyboard.obj, dispnew.obj): Depend upon w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13829
diff
changeset
|
466 $(SRC)\w32term.h \ |
| 9803 | 467 $(SRC)\xterm.h \ |
| 468 $(SRC)\vmstime.h \ | |
| 469 $(SRC)\systime.h | |
| 470 | |
| 471 $(BLD)\doc.obj : \ | |
| 472 $(SRC)\doc.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
473 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
474 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 475 $(EMACS_ROOT)\src\config.h \ |
| 476 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 477 $(SRC)\lisp.h \ | |
| 478 $(SRC)\buffer.h \ | |
| 479 $(SRC)\keyboard.h | |
| 480 | |
| 481 $(BLD)\doprnt.obj : \ | |
| 482 $(SRC)\doprnt.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
483 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
484 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 485 $(EMACS_ROOT)\src\config.h |
| 486 | |
| 487 $(BLD)\dosfns.obj : \ | |
| 488 $(SRC)\dosfns.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
489 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
490 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 491 $(EMACS_ROOT)\src\config.h \ |
| 492 $(SRC)\lisp.h \ | |
| 493 $(SRC)\buffer.h \ | |
| 494 $(SRC)\termchar.h \ | |
| 495 $(SRC)\termhooks.h \ | |
| 496 $(SRC)\frame.h \ | |
| 497 $(SRC)\dosfns.h \ | |
| 498 $(SRC)\msdos.h | |
| 499 | |
| 500 $(BLD)\editfns.obj : \ | |
| 501 $(SRC)\editfns.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
502 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
503 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 504 $(EMACS_ROOT)\src\config.h \ |
| 505 $(SRC)\uaf.h \ | |
| 506 $(SRC)\vms-pwd.h \ | |
| 507 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
| 508 $(SRC)\lisp.h \ | |
| 509 $(SRC)\dispextern.h \ | |
| 510 $(SRC)\intervals.h \ | |
| 511 $(SRC)\buffer.h \ | |
| 512 $(SRC)\window.h \ | |
| 513 $(SRC)\vmstime.h \ | |
| 514 $(SRC)\systime.h | |
| 515 | |
| 516 $(BLD)\emacs.obj : \ | |
| 517 $(SRC)\emacs.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
518 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
519 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 520 $(EMACS_ROOT)\src\config.h \ |
| 521 $(SRC)\lisp.h \ | |
| 522 $(SRC)\commands.h \ | |
| 523 $(SRC)\dispextern.h \ | |
| 524 $(SRC)\intervals.h \ | |
| 525 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 526 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 527 $(SRC)\systty.h \ | |
| 528 $(SRC)\syssignal.h \ | |
| 529 $(SRC)\process.h | |
| 530 | |
| 531 $(BLD)\eval.obj : \ | |
| 532 $(SRC)\eval.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
533 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
534 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 535 $(EMACS_ROOT)\src\config.h \ |
| 536 $(SRC)\lisp.h \ | |
| 537 $(SRC)\blockinput.h \ | |
| 538 $(SRC)\commands.h \ | |
| 539 $(SRC)\keyboard.h | |
| 540 | |
| 541 $(BLD)\fileio.obj : \ | |
| 542 $(SRC)\fileio.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
543 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
544 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 545 $(EMACS_ROOT)\src\config.h \ |
| 546 $(SRC)\uaf.h \ | |
| 547 $(SRC)\vms-pwd.h \ | |
| 548 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
| 549 $(SRC)\msdos.h \ | |
| 550 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
| 551 $(SRC)\vmsdir.h \ | |
| 552 $(SRC)\lisp.h \ | |
| 553 $(SRC)\dispextern.h \ | |
| 554 $(SRC)\intervals.h \ | |
| 555 $(SRC)\buffer.h \ | |
| 556 $(SRC)\window.h \ | |
| 557 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 558 $(SRC)\vmstime.h \ | |
| 559 $(SRC)\systime.h | |
| 560 | |
| 561 $(BLD)\filelock.obj : \ | |
| 562 $(SRC)\filelock.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
563 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
564 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 565 $(EMACS_ROOT)\src\config.h \ |
| 566 $(SRC)\uaf.h \ | |
| 567 $(SRC)\vms-pwd.h \ | |
| 568 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
| 569 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 570 $(SRC)\lisp.h \ | |
| 571 $(EMACS_ROOT)\src\paths.h \ | |
| 572 $(SRC)\buffer.h \ | |
| 573 $(SRC)\vmsdir.h \ | |
| 574 $(SRC)\ndir.h | |
| 575 | |
| 576 $(BLD)\filemode.obj : \ | |
| 577 $(SRC)\filemode.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
578 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
579 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 580 $(EMACS_ROOT)\src\config.h \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
581 $(SRC)\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
582 $(SRC)\m\intel386.h \ |
| 9803 | 583 $(SRC)\config.h |
| 584 | |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
585 $(BLD)\firstfile.obj : \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
586 $(SRC)\firstfile.c \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
587 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
588 $(EMACS_ROOT)\src\m\intel386.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
589 $(EMACS_ROOT)\src\config.h |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
590 |
| 9803 | 591 $(BLD)\floatfns.obj : \ |
| 592 $(SRC)\floatfns.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
593 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
594 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 595 $(EMACS_ROOT)\src\config.h \ |
| 596 $(SRC)\lisp.h \ | |
| 597 $(SRC)\syssignal.h | |
| 598 | |
| 599 $(BLD)\fns.obj : \ | |
| 600 $(SRC)\fns.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
601 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
602 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 603 $(EMACS_ROOT)\src\config.h \ |
| 604 $(SRC)\lisp.h \ | |
| 605 $(SRC)\commands.h \ | |
| 606 $(SRC)\buffer.h \ | |
| 607 $(SRC)\keyboard.h \ | |
| 608 $(SRC)\dispextern.h \ | |
| 609 $(SRC)\intervals.h | |
| 610 | |
| 611 $(BLD)\frame.obj : \ | |
| 612 $(SRC)\frame.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
613 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
614 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 615 $(EMACS_ROOT)\src\config.h \ |
| 616 $(SRC)\lisp.h \ | |
| 617 $(SRC)\frame.h \ | |
| 618 $(SRC)\termhooks.h \ | |
| 619 $(SRC)\window.h \ | |
| 620 $(SRC)\buffer.h \ | |
| 621 $(SRC)\commands.h \ | |
| 622 $(SRC)\keyboard.h | |
| 623 | |
| 624 $(BLD)\getloadavg.obj : \ | |
| 625 $(SRC)\getloadavg.c \ | |
| 626 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
627 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
628 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 629 $(EMACS_ROOT)\src\config.h \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
630 $(SRC)\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
631 $(SRC)\m\intel386.h \ |
| 9803 | 632 $(SRC)\config.h \ |
| 633 $(EMACS_ROOT)\nt\inc\sys\file.h | |
| 634 | |
| 635 $(BLD)\gmalloc.obj : \ | |
| 636 $(SRC)\gmalloc.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
637 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
638 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 639 $(EMACS_ROOT)\src\config.h \ |
| 640 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
| 641 $(SRC)\getpagesize.h | |
| 642 $(CC) $(CFLAGS) -D__STDC__ -Fo$@ gmalloc.c | |
| 643 | |
| 644 $(BLD)\hftctl.obj : \ | |
| 645 $(SRC)\hftctl.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
646 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
647 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 648 $(EMACS_ROOT)\src\config.h \ |
| 649 $(EMACS_ROOT)\nt\inc\sys\ioctl.h | |
| 650 | |
| 651 $(BLD)\indent.obj : \ | |
| 652 $(SRC)\indent.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
653 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
654 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 655 $(EMACS_ROOT)\src\config.h \ |
| 656 $(SRC)\lisp.h \ | |
| 657 $(SRC)\buffer.h \ | |
| 658 $(SRC)\indent.h \ | |
| 659 $(SRC)\frame.h \ | |
| 660 $(SRC)\window.h \ | |
| 661 $(SRC)\termchar.h \ | |
| 662 $(SRC)\termopts.h \ | |
| 663 $(SRC)\disptab.h \ | |
| 664 $(SRC)\dispextern.h \ | |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
665 $(SRC)\intervals.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
666 $(SRC)\region-cache.h |
| 9803 | 667 |
| 668 $(BLD)\insdel.obj : \ | |
| 669 $(SRC)\insdel.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
670 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
671 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 672 $(EMACS_ROOT)\src\config.h \ |
| 673 $(SRC)\lisp.h \ | |
| 674 $(SRC)\dispextern.h \ | |
| 675 $(SRC)\intervals.h \ | |
| 676 $(SRC)\buffer.h \ | |
| 677 $(SRC)\window.h \ | |
| 678 $(SRC)\blockinput.h | |
| 679 | |
| 680 $(BLD)\intervals.obj : \ | |
| 681 $(SRC)\intervals.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
682 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
683 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 684 $(EMACS_ROOT)\src\config.h \ |
| 685 $(SRC)\lisp.h \ | |
| 686 $(SRC)\dispextern.h \ | |
| 687 $(SRC)\intervals.h \ | |
| 688 $(SRC)\buffer.h \ | |
| 689 $(SRC)\puresize.h | |
| 690 $(CC) $(CFLAGS) -Fo$@ intervals.c | |
| 691 | |
| 692 $(BLD)\keyboard.obj : \ | |
| 693 $(SRC)\keyboard.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
694 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
695 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 696 $(EMACS_ROOT)\src\config.h \ |
| 697 $(SRC)\termchar.h \ | |
| 698 $(SRC)\termopts.h \ | |
| 699 $(SRC)\lisp.h \ | |
| 700 $(SRC)\termhooks.h \ | |
| 701 $(SRC)\macros.h \ | |
| 702 $(SRC)\frame.h \ | |
| 703 $(SRC)\window.h \ | |
| 704 $(SRC)\commands.h \ | |
| 705 $(SRC)\buffer.h \ | |
| 706 $(SRC)\disptab.h \ | |
| 707 $(SRC)\keyboard.h \ | |
| 708 $(SRC)\dispextern.h \ | |
| 709 $(SRC)\intervals.h \ | |
| 710 $(SRC)\blockinput.h \ | |
| 711 $(SRC)\msdos.h \ | |
| 712 $(SRC)\syssignal.h \ | |
| 713 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 714 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 715 $(SRC)\systty.h \ | |
|
14247
63cada85e5fd
(keyboard.obj, dispnew.obj): Depend upon w32term.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13829
diff
changeset
|
716 $(SRC)\w32term.h \ |
| 9803 | 717 $(SRC)\xterm.h \ |
| 718 $(SRC)\vmstime.h \ | |
| 719 $(SRC)\systime.h | |
| 720 | |
| 721 $(BLD)\keymap.obj : \ | |
| 722 $(SRC)\keymap.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
723 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
724 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 725 $(EMACS_ROOT)\src\config.h \ |
| 726 $(SRC)\lisp.h \ | |
| 727 $(SRC)\commands.h \ | |
| 728 $(SRC)\buffer.h \ | |
| 729 $(SRC)\keyboard.h \ | |
| 730 $(SRC)\termhooks.h \ | |
| 731 $(SRC)\blockinput.h | |
| 732 | |
| 733 $(BLD)\lastfile.obj : \ | |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
734 $(SRC)\lastfile.c \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
735 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
736 $(EMACS_ROOT)\src\m\intel386.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
737 $(EMACS_ROOT)\src\config.h |
| 9803 | 738 |
| 739 $(BLD)\lread.obj : \ | |
| 740 $(SRC)\lread.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
741 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
742 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 743 $(EMACS_ROOT)\src\config.h \ |
| 744 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 745 $(SRC)\lisp.h \ | |
| 746 $(SRC)\buffer.h \ | |
| 747 $(EMACS_ROOT)\src\paths.h \ | |
| 748 $(SRC)\commands.h \ | |
| 749 $(SRC)\keyboard.h \ | |
| 750 $(SRC)\termhooks.h \ | |
| 751 $(SRC)\msdos.h | |
| 752 | |
| 753 $(BLD)\macros.obj : \ | |
| 754 $(SRC)\macros.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
755 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
756 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 757 $(EMACS_ROOT)\src\config.h \ |
| 758 $(SRC)\lisp.h \ | |
| 759 $(SRC)\macros.h \ | |
| 760 $(SRC)\commands.h \ | |
| 761 $(SRC)\buffer.h \ | |
| 762 $(SRC)\window.h | |
| 763 | |
| 764 $(BLD)\marker.obj : \ | |
| 765 $(SRC)\marker.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
766 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
767 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 768 $(EMACS_ROOT)\src\config.h \ |
| 769 $(SRC)\lisp.h \ | |
| 770 $(SRC)\buffer.h | |
| 771 | |
| 772 $(BLD)\minibuf.obj : \ | |
| 773 $(SRC)\minibuf.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
774 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
775 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 776 $(EMACS_ROOT)\src\config.h \ |
| 777 $(SRC)\lisp.h \ | |
| 778 $(SRC)\commands.h \ | |
| 779 $(SRC)\buffer.h \ | |
| 780 $(SRC)\dispextern.h \ | |
| 781 $(SRC)\frame.h \ | |
| 782 $(SRC)\window.h \ | |
| 783 $(SRC)\syntax.h | |
| 784 | |
| 785 $(BLD)\mocklisp.obj : \ | |
| 786 $(SRC)\mocklisp.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
787 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
788 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 789 $(EMACS_ROOT)\src\config.h \ |
| 790 $(SRC)\lisp.h \ | |
| 791 $(SRC)\buffer.h | |
| 792 | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
793 $(BLD)\w32.obj : \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
794 $(SRC)\w32.c \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
795 $(SRC)\w32.h \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
796 $(SRC)\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
797 $(SRC)\m\intel386.h \ |
| 9803 | 798 $(SRC)\config.h \ |
| 799 $(SRC)\lisp.h \ | |
| 800 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
801 $(SRC)\w32heap.h |
| 9803 | 802 |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
803 $(BLD)\w32heap.obj : \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
804 $(SRC)\w32heap.c \ |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
805 $(SRC)\w32heap.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
806 $(SRC)\s\ms-w32.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
807 $(SRC)\m\intel386.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
808 $(SRC)\config.h |
| 9803 | 809 |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
810 $(BLD)\w32inevt.obj : \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
811 $(SRC)\w32inevt.c \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
812 $(SRC)\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
813 $(SRC)\m\intel386.h \ |
| 9803 | 814 $(SRC)\config.h \ |
| 815 $(SRC)\lisp.h \ | |
| 816 $(SRC)\frame.h \ | |
| 817 $(SRC)\blockinput.h \ | |
|
23680
02e5da32da56
($(BLD)\w32inevt.obj): Add dependencies on w32term.h
Geoff Voelker <voelker@cs.washington.edu>
parents:
23626
diff
changeset
|
818 $(SRC)\termhooks.h \ |
|
02e5da32da56
($(BLD)\w32inevt.obj): Add dependencies on w32term.h
Geoff Voelker <voelker@cs.washington.edu>
parents:
23626
diff
changeset
|
819 $(SRC)\w32heap.h \ |
|
02e5da32da56
($(BLD)\w32inevt.obj): Add dependencies on w32term.h
Geoff Voelker <voelker@cs.washington.edu>
parents:
23626
diff
changeset
|
820 $(SRC)\w32term.h |
| 9803 | 821 |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
822 $(BLD)\w32proc.obj : \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
823 $(SRC)\w32proc.c \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
824 $(SRC)\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
825 $(SRC)\m\intel386.h \ |
| 9803 | 826 $(SRC)\config.h \ |
| 827 $(SRC)\lisp.h \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
828 $(SRC)\w32.h \ |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
829 $(SRC)\w32heap.h \ |
| 9803 | 830 $(SRC)\vmstime.h \ |
| 831 $(SRC)\systime.h | |
| 832 | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
833 $(BLD)\w32console.obj : \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
834 $(SRC)\w32console.c \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
835 $(SRC)\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
836 $(SRC)\m\intel386.h \ |
| 9803 | 837 $(SRC)\config.h \ |
| 838 $(SRC)\lisp.h \ | |
| 839 $(SRC)\frame.h \ | |
| 840 $(SRC)\disptab.h \ | |
| 841 $(SRC)\termhooks.h \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
842 $(SRC)\w32inevt.h |
| 9803 | 843 |
| 844 $(BLD)\prefix-args.obj : \ | |
| 845 $(SRC)\prefix-args.c | |
| 846 | |
| 847 $(BLD)\print.obj : \ | |
| 848 $(SRC)\print.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
849 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
850 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 851 $(EMACS_ROOT)\src\config.h \ |
| 852 $(SRC)\lisp.h \ | |
| 853 $(SRC)\buffer.h \ | |
| 854 $(SRC)\frame.h \ | |
| 855 $(SRC)\window.h \ | |
| 856 $(SRC)\process.h \ | |
| 857 $(SRC)\termchar.h \ | |
| 858 $(SRC)\dispextern.h \ | |
| 859 $(SRC)\intervals.h | |
| 860 | |
| 861 $(BLD)\process.obj : \ | |
| 862 $(SRC)\process.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
863 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
864 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 865 $(EMACS_ROOT)\src\config.h \ |
| 866 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 867 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 868 $(SRC)\systty.h \ | |
| 869 $(SRC)\window.h \ | |
| 870 $(SRC)\buffer.h \ | |
| 871 $(SRC)\process.h \ | |
| 872 $(SRC)\termhooks.h \ | |
| 873 $(SRC)\commands.h \ | |
| 874 $(SRC)\frame.h \ | |
| 875 $(SRC)\syssignal.h \ | |
| 876 $(SRC)\vmsproc.h \ | |
| 877 $(SRC)\syswait.h \ | |
| 878 $(SRC)\lisp.h \ | |
| 879 $(SRC)\vmstime.h \ | |
| 880 $(SRC)\systime.h \ | |
| 881 $(SRC)\termopts.h | |
| 882 | |
| 883 $(BLD)\ralloc.obj : \ | |
| 884 $(SRC)\ralloc.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
885 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
886 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 887 $(EMACS_ROOT)\src\config.h \ |
| 888 $(SRC)\lisp.h \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
889 $(SRC)\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
890 $(SRC)\m\intel386.h \ |
| 9803 | 891 $(SRC)\config.h \ |
| 892 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
| 893 $(SRC)\getpagesize.h | |
| 894 | |
| 895 $(BLD)\regex.obj : \ | |
| 896 $(SRC)\regex.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
897 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
898 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 899 $(EMACS_ROOT)\src\config.h \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
900 $(SRC)\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
901 $(SRC)\m\intel386.h \ |
| 9803 | 902 $(SRC)\config.h \ |
| 903 $(SRC)\lisp.h \ | |
| 904 $(SRC)\buffer.h \ | |
| 905 $(SRC)\syntax.h \ | |
| 906 $(SRC)\regex.h | |
| 907 | |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
908 $(BLD)\region-cache.obj : \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
909 $(SRC)\region-cache.c \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
910 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
911 $(EMACS_ROOT)\src\m\intel386.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
912 $(EMACS_ROOT)\src\config.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
913 $(SRC)\lisp.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
914 $(SRC)\buffer.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
915 $(SRC)\region-cache.h |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
916 |
| 9803 | 917 $(BLD)\scroll.obj : \ |
| 918 $(SRC)\scroll.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
919 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
920 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 921 $(EMACS_ROOT)\src\config.h \ |
| 922 $(SRC)\termchar.h \ | |
| 923 $(SRC)\lisp.h \ | |
| 924 $(SRC)\dispextern.h \ | |
| 925 $(SRC)\frame.h | |
| 926 | |
| 927 $(BLD)\search.obj : \ | |
| 928 $(SRC)\search.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
929 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
930 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 931 $(EMACS_ROOT)\src\config.h \ |
| 932 $(SRC)\lisp.h \ | |
| 933 $(SRC)\syntax.h \ | |
| 934 $(SRC)\buffer.h \ | |
| 935 $(SRC)\commands.h \ | |
| 936 $(SRC)\blockinput.h \ | |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
937 $(SRC)\regex.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
938 $(SRC)\region-cache.h |
| 9803 | 939 |
| 11742 | 940 $(BLD)\strftime.obj : \ |
| 941 $(SRC)\strftime.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
942 $(EMACS_ROOT)\src\s\ms-w32.h \ |
| 11742 | 943 $(EMACS_ROOT)\src\m\intel386.h \ |
| 944 $(EMACS_ROOT)\src\config.h | |
| 945 | |
| 9803 | 946 $(BLD)\sunfns.obj : \ |
| 947 $(SRC)\sunfns.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
948 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
949 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 950 $(EMACS_ROOT)\src\config.h \ |
| 951 $(SRC)\lisp.h \ | |
| 952 $(SRC)\window.h \ | |
| 953 $(SRC)\buffer.h \ | |
| 954 $(SRC)\termhooks.h | |
| 955 | |
| 956 $(BLD)\syntax.obj : \ | |
| 957 $(SRC)\syntax.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
958 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
959 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 960 $(EMACS_ROOT)\src\config.h \ |
| 961 $(SRC)\lisp.h \ | |
| 962 $(SRC)\commands.h \ | |
| 963 $(SRC)\buffer.h \ | |
| 964 $(SRC)\syntax.h | |
| 965 | |
| 966 $(BLD)\sysdep.obj : \ | |
| 967 $(SRC)\sysdep.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
968 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
969 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 970 $(EMACS_ROOT)\src\config.h \ |
| 971 $(SRC)\lisp.h \ | |
| 972 $(SRC)\blockinput.h \ | |
| 973 $(SRC)\dosfns.h \ | |
| 974 $(SRC)\msdos.h \ | |
| 975 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
| 976 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 977 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 978 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 979 $(SRC)\systty.h \ | |
| 980 $(SRC)\vmsproc.h \ | |
| 981 $(SRC)\syswait.h \ | |
| 982 $(SRC)\frame.h \ | |
| 983 $(SRC)\window.h \ | |
| 984 $(SRC)\termhooks.h \ | |
| 985 $(SRC)\termchar.h \ | |
| 986 $(SRC)\termopts.h \ | |
| 987 $(SRC)\dispextern.h \ | |
| 988 $(SRC)\process.h \ | |
| 989 $(SRC)\vmsdir.h \ | |
| 990 $(SRC)\ndir.h \ | |
| 991 $(SRC)\syssignal.h \ | |
| 992 $(SRC)\vmstime.h \ | |
| 993 $(SRC)\systime.h \ | |
| 994 $(SRC)\uaf.h \ | |
| 995 $(SRC)\vms-pwd.h \ | |
| 996 $(EMACS_ROOT)\src\acldef.h \ | |
| 997 $(EMACS_ROOT)\src\chpdef.h | |
| 998 | |
| 999 $(BLD)\term.obj : \ | |
| 1000 $(SRC)\term.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1001 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
1002 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 1003 $(EMACS_ROOT)\src\config.h \ |
| 1004 $(SRC)\termchar.h \ | |
| 1005 $(SRC)\termopts.h \ | |
| 1006 $(SRC)\cm.h \ | |
| 1007 $(SRC)\lisp.h \ | |
| 1008 $(SRC)\frame.h \ | |
| 1009 $(SRC)\disptab.h \ | |
| 1010 $(SRC)\termhooks.h \ | |
| 1011 $(SRC)\keyboard.h | |
| 1012 | |
| 1013 $(BLD)\termcap.obj : \ | |
| 1014 $(SRC)\termcap.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1015 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
1016 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 1017 $(EMACS_ROOT)\src\config.h \ |
| 1018 $(EMACS_ROOT)\nt\inc\sys\file.h | |
| 1019 | |
| 1020 $(BLD)\terminfo.obj : \ | |
| 1021 $(SRC)\terminfo.c | |
| 1022 | |
| 1023 $(BLD)\textprop.obj : \ | |
| 1024 $(SRC)\textprop.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1025 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
1026 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 1027 $(EMACS_ROOT)\src\config.h \ |
| 1028 $(SRC)\lisp.h \ | |
| 1029 $(SRC)\dispextern.h \ | |
| 1030 $(SRC)\intervals.h \ | |
| 1031 $(SRC)\buffer.h \ | |
| 1032 $(SRC)\window.h | |
| 1033 | |
| 1034 $(BLD)\tparam.obj : \ | |
| 1035 $(SRC)\tparam.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1036 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
1037 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 1038 $(EMACS_ROOT)\src\config.h |
| 1039 | |
| 1040 $(BLD)\undo.obj : \ | |
| 1041 $(SRC)\undo.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1042 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
1043 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 1044 $(EMACS_ROOT)\src\config.h \ |
| 1045 $(SRC)\lisp.h \ | |
| 1046 $(SRC)\buffer.h \ | |
| 1047 $(SRC)\commands.h | |
| 1048 | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1049 $(BLD)\unexw32.obj : \ |
|
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1050 $(SRC)\unexw32.c \ |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1051 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1052 $(EMACS_ROOT)\src\m\intel386.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1053 $(EMACS_ROOT)\src\config.h \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1054 $(SRC)\w32heap.h |
| 9803 | 1055 |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
1056 $(BLD)\vm-limit.obj : \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
1057 $(SRC)\vm-limit.c \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1058 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
1059 $(EMACS_ROOT)\src\m\intel386.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
1060 $(EMACS_ROOT)\src\config.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
1061 $(SRC)\mem-limits.h |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
1062 |
| 9803 | 1063 $(BLD)\widget.obj : \ |
| 1064 $(SRC)\widget.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1065 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
1066 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 1067 $(EMACS_ROOT)\src\config.h \ |
| 1068 $(SRC)\lisp.h \ | |
| 1069 $(SRC)\xterm.h \ | |
| 1070 $(SRC)\frame.h \ | |
| 1071 $(SRC)\dispextern.h \ | |
| 1072 $(SRC)\widget.h \ | |
| 1073 $(SRC)\widgetprv.h | |
| 1074 | |
| 1075 $(BLD)\window.obj : \ | |
| 1076 $(SRC)\window.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1077 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
1078 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 1079 $(EMACS_ROOT)\src\config.h \ |
| 1080 $(SRC)\lisp.h \ | |
| 1081 $(SRC)\buffer.h \ | |
| 1082 $(SRC)\frame.h \ | |
| 1083 $(SRC)\window.h \ | |
| 1084 $(SRC)\commands.h \ | |
| 1085 $(SRC)\indent.h \ | |
| 1086 $(SRC)\termchar.h \ | |
| 1087 $(SRC)\disptab.h \ | |
| 1088 $(SRC)\keyboard.h | |
| 1089 | |
| 1090 $(BLD)\xdisp.obj : \ | |
| 1091 $(SRC)\xdisp.c \ | |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1092 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
1093 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 1094 $(EMACS_ROOT)\src\config.h \ |
| 1095 $(SRC)\lisp.h \ | |
| 1096 $(SRC)\frame.h \ | |
| 1097 $(SRC)\window.h \ | |
| 1098 $(SRC)\termchar.h \ | |
| 1099 $(SRC)\buffer.h \ | |
| 1100 $(SRC)\indent.h \ | |
| 1101 $(SRC)\commands.h \ | |
| 1102 $(SRC)\macros.h \ | |
| 1103 $(SRC)\disptab.h \ | |
| 1104 $(SRC)\termhooks.h \ | |
| 1105 $(SRC)\dispextern.h \ | |
| 1106 $(SRC)\intervals.h | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1107 |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1108 $(BLD)\w32faces.obj: \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1109 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1110 $(EMACS_ROOT)\src\m\intel386.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1111 $(EMACS_ROOT)\src\config.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1112 $(SRC)\w32faces.c \ |
| 15233 | 1113 $(SRC)\lisp.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1114 $(SRC)\w32term.h \ |
|
16888
380c7e461c14
Use new name w32gui.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16593
diff
changeset
|
1115 $(SRC)\w32gui.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1116 $(SRC)\buffer.h \ |
| 15233 | 1117 $(SRC)\dispextern.h \ |
| 1118 $(SRC)\frame.h \ | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1119 $(SRC)\blockinput.h \ |
| 15233 | 1120 $(SRC)\window.h \ |
| 1121 $(SRC)\intervals.h | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1122 |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1123 $(BLD)\w32fns.obj: \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1124 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1125 $(EMACS_ROOT)\src\m\intel386.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1126 $(EMACS_ROOT)\src\config.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1127 $(SRC)\w32fns.c \ |
|
23504
caf3f908142d
(w32fns.c): Add x-list-font.c to dependancies.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22434
diff
changeset
|
1128 $(SRC)\x-list-font.c \ |
| 15233 | 1129 $(SRC)\lisp.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1130 $(SRC)\w32term.h \ |
|
16888
380c7e461c14
Use new name w32gui.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16593
diff
changeset
|
1131 $(SRC)\w32gui.h \ |
| 15233 | 1132 $(SRC)\frame.h \ |
| 1133 $(SRC)\window.h \ | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1134 $(SRC)\buffer.h \ |
| 15233 | 1135 $(SRC)\dispextern.h \ |
| 1136 $(SRC)\keyboard.h \ | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1137 $(SRC)\blockinput.h \ |
| 15233 | 1138 $(SRC)\paths.h \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1139 $(SRC)\w32heap.h \ |
| 15233 | 1140 $(SRC)\termhooks.h |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1141 |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1142 $(BLD)\w32menu.obj: \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1143 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1144 $(EMACS_ROOT)\src\m\intel386.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1145 $(EMACS_ROOT)\src\config.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1146 $(SRC)\w32menu.c \ |
| 15233 | 1147 $(SRC)\lisp.h \ |
| 1148 $(SRC)\termhooks.h \ | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1149 $(SRC)\frame.h \ |
| 15233 | 1150 $(SRC)\window.h \ |
| 1151 $(SRC)\keyboard.h \ | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1152 $(SRC)\blockinput.h \ |
| 15233 | 1153 $(SRC)\buffer.h |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1154 |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1155 $(BLD)\w32term.obj: \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1156 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1157 $(EMACS_ROOT)\src\m\intel386.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1158 $(EMACS_ROOT)\src\config.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1159 $(SRC)\w32term.c \ |
| 15233 | 1160 $(SRC)\lisp.h \ |
| 1161 $(SRC)\blockinput.h \ | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1162 $(SRC)\w32term.h \ |
|
16888
380c7e461c14
Use new name w32gui.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16593
diff
changeset
|
1163 $(SRC)\w32gui.h \ |
| 15233 | 1164 $(SRC)\systty.h \ |
| 1165 $(SRC)\systime.h \ | |
| 1166 $(SRC)\frame.h \ | |
| 1167 $(SRC)\dispextern.h \ | |
| 1168 $(SRC)\termhooks.h \ | |
| 1169 $(SRC)\termopts.h \ | |
| 1170 $(SRC)\termchar.h \ | |
| 1171 $(SRC)\gnu.h \ | |
| 1172 $(SRC)\disptab.h \ | |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1173 $(SRC)\buffer.h \ |
| 15233 | 1174 $(SRC)\window.h \ |
| 15238 | 1175 $(SRC)\keyboard.h \ |
| 15233 | 1176 $(SRC)\intervals.h |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1177 |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1178 $(BLD)\w32select.obj: \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1179 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1180 $(EMACS_ROOT)\src\m\intel386.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1181 $(EMACS_ROOT)\src\config.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1182 $(SRC)\w32select.c \ |
| 15233 | 1183 $(SRC)\lisp.h \ |
| 1184 $(SRC)\w32term.h \ | |
|
16888
380c7e461c14
Use new name w32gui.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16593
diff
changeset
|
1185 $(SRC)\w32gui.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1186 $(SRC)\dispextern.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1187 $(SRC)\frame.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1188 $(SRC)\blockinput.h |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1189 |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1190 $(BLD)\w32reg.obj: \ |
|
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
15742
diff
changeset
|
1191 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1192 $(EMACS_ROOT)\src\m\intel386.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1193 $(EMACS_ROOT)\src\config.h \ |
|
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1194 $(SRC)\w32reg.c \ |
| 15233 | 1195 $(SRC)\lisp.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1196 $(SRC)\w32term.h \ |
|
16888
380c7e461c14
Use new name w32gui.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
16593
diff
changeset
|
1197 $(SRC)\w32gui.h \ |
|
13428
d5df560686b2
(SUBSYSTEM, TLIBW32, TLASTLIB, WIN32OBJ): Defined.
Geoff Voelker <voelker@cs.washington.edu>
parents:
12453
diff
changeset
|
1198 $(SRC)\blockinput.h |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1199 |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1200 $(BLD)\w32xfns.obj: \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1201 $(EMACS_ROOT)\src\s\ms-w32.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1202 $(EMACS_ROOT)\src\m\intel386.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1203 $(EMACS_ROOT)\src\config.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1204 $(SRC)\w32xfns.c \ |
|
24143
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1205 |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1206 $(BLD)\w32bdf.obj: \ |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1207 $(EMACS_ROOT)\src/s\ms-w32.h \ |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1208 $(EMACS_ROOT)\src/m\intel386.h \ |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1209 $(EMACS_ROOT)\src/config.h \ |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1210 $(SRC)\w32bdf.c \ |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1211 $(SRC)\lisp.h \ |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1212 $(SRC)\charset.h \ |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1213 $(SRC)\fontset.h \ |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1214 $(SRC)\blockinput.h \ |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1215 $(SRC)\w32gui.h \ |
|
fb22a9461d00
Add w32bdf.c and w32bdf.h.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24135
diff
changeset
|
1216 $(SRC)\w32term.h \ |
|
24378
de406600b275
($(BLD)\w32bdf.obj): Add missing continuation character.
Andrew Innes <andrewi@gnu.org>
parents:
24365
diff
changeset
|
1217 $(SRC)\w32bdf.h \ |
|
19702
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1218 $(SRC)\lisp.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1219 $(SRC)\w32term.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1220 $(SRC)\w32.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1221 $(SRC)\frame.h \ |
|
e59ec4e58fce
makefile.nt (TLIB0, TOBJ, OBJ0): New macro.
Geoff Voelker <voelker@cs.washington.edu>
parents:
18505
diff
changeset
|
1222 $(SRC)\blockinput.h |
