Mercurial > emacs
annotate src/makefile.nt @ 12178:fc00a306b890
(TEMACS): Depend upon $(BLD).
(temacs): Remove $(BLD) dependency.
| author | Geoff Voelker <voelker@cs.washington.edu> |
|---|---|
| date | Sat, 10 Jun 1995 02:22:05 +0000 |
| parents | 4636a3916e01 |
| children | 15c642f6c1a1 |
| rev | line source |
|---|---|
| 9803 | 1 # Makefile for GNU Emacs on Windows NT |
| 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 | |
| 19 # along with GNU Emacs; see the file COPYING. If not, write to | |
| 20 # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
| 21 # | |
| 22 | |
| 23 # | |
| 24 # Sets up the system dependent macros. | |
| 25 # | |
| 26 !include ..\nt\makefile.def | |
| 27 | |
| 28 # | |
| 29 # HAVE_CONFIG_H is required by some generic gnu sources stuck into | |
| 30 # the emacs source tree. | |
| 31 # | |
| 11383 | 32 LOCAL_FLAGS = -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I..\nt\inc |
| 9803 | 33 |
| 34 EMACS = $(BLD)\emacs.exe | |
| 35 TEMACS = $(BLD)\temacs.exe | |
| 11742 | 36 TLIB1 = $(BLD)\temacs1.lib |
| 37 TLIB2 = $(BLD)\temacs2.lib | |
| 9803 | 38 TOBJ = $(BLD)\emacs.obj |
| 11742 | 39 TRES = $(BLD)\emacs.rbj |
| 9803 | 40 |
| 41 LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x1000000 -base:0xD00000 -debug:full -debugtype:cv -machine:$(ARCH) -subsystem:console -entry:_start | |
| 42 | |
| 43 # | |
| 44 # Split up the objects into two sets so that we don't run out of | |
| 45 # command line space when we link them into a library. | |
| 46 # | |
| 47 OBJ1 = $(BLD)\abbrev.obj \ | |
| 48 $(BLD)\alloc.obj \ | |
| 49 $(BLD)\alloca.obj \ | |
| 50 $(BLD)\buffer.obj \ | |
| 51 $(BLD)\bytecode.obj \ | |
| 52 $(BLD)\callint.obj \ | |
| 53 $(BLD)\callproc.obj \ | |
| 54 $(BLD)\casefiddle.obj \ | |
| 55 $(BLD)\cm.obj \ | |
| 56 $(BLD)\cmds.obj \ | |
| 57 $(BLD)\data.obj \ | |
| 58 $(BLD)\dired.obj \ | |
| 59 $(BLD)\dispnew.obj \ | |
| 60 $(BLD)\doc.obj \ | |
| 61 $(BLD)\doprnt.obj \ | |
| 62 $(BLD)\editfns.obj \ | |
| 63 $(BLD)\eval.obj \ | |
| 64 $(BLD)\fileio.obj \ | |
| 65 $(BLD)\filelock.obj \ | |
| 66 $(BLD)\filemode.obj \ | |
| 67 $(BLD)\fns.obj \ | |
| 68 $(BLD)\indent.obj \ | |
| 69 $(BLD)\insdel.obj \ | |
| 70 $(BLD)\keyboard.obj \ | |
| 71 $(BLD)\keymap.obj \ | |
| 72 $(BLD)\lastfile.obj \ | |
| 73 $(BLD)\lread.obj \ | |
| 74 $(BLD)\macros.obj \ | |
| 75 $(BLD)\marker.obj \ | |
| 76 $(BLD)\minibuf.obj \ | |
| 77 $(BLD)\mocklisp.obj | |
| 78 | |
| 79 OBJ2 = $(BLD)\nt.obj \ | |
| 80 $(BLD)\ntheap.obj \ | |
| 81 $(BLD)\ntinevt.obj \ | |
| 82 $(BLD)\ntproc.obj \ | |
| 83 $(BLD)\ntterm.obj \ | |
| 84 $(BLD)\print.obj \ | |
| 85 $(BLD)\process.obj \ | |
| 86 $(BLD)\regex.obj \ | |
| 87 $(BLD)\scroll.obj \ | |
| 88 $(BLD)\search.obj \ | |
| 89 $(BLD)\syntax.obj \ | |
| 90 $(BLD)\sysdep.obj \ | |
| 91 $(BLD)\term.obj \ | |
| 92 $(BLD)\termcap.obj \ | |
| 93 $(BLD)\tparam.obj \ | |
| 94 $(BLD)\undo.obj \ | |
| 95 $(BLD)\unexnt.obj \ | |
| 96 $(BLD)\window.obj \ | |
| 97 $(BLD)\xdisp.obj \ | |
| 98 $(BLD)\casetab.obj \ | |
| 99 $(BLD)\floatfns.obj \ | |
| 100 $(BLD)\frame.obj \ | |
| 101 $(BLD)\gmalloc.obj \ | |
| 102 $(BLD)\intervals.obj \ | |
| 103 $(BLD)\ralloc.obj \ | |
| 104 $(BLD)\textprop.obj \ | |
| 11383 | 105 $(BLD)\vm-limit.obj \ |
| 106 $(BLD)\region-cache.obj \ | |
| 107 $(BLD)\strftime.obj | |
| 9803 | 108 |
|
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
109 LIBS = $(TLIB1) \ |
|
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
110 $(TLIB2) \ |
|
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
111 $(BASE_LIBS) \ |
|
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
112 $(ADVAPI32) \ |
|
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
113 user32.lib |
| 9803 | 114 |
| 115 # | |
| 116 # Build the executable and dump it. | |
| 117 # | |
| 118 all: $(BLD) $(EMACS) | |
| 119 | |
| 120 # | |
| 121 # Headers we would preprocess if we could. | |
| 122 # | |
| 123 PREPARED_HEADERS = config.h paths.h | |
|
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
124 config.h: ..\nt\$(CONFIG_H) |
|
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
125 $(CP) $** $@ |
| 11383 | 126 paths.h: ..\nt\paths.h |
|
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
127 $(CP) $** $@ |
| 11383 | 128 |
| 129 # | |
| 130 # Make sure we have the DOC file in the right place. | |
| 131 # | |
| 11742 | 132 DOC = obj\etc\DOC-X |
| 11383 | 133 $(DOC):; cd ..\lib-src |
| 11742 | 134 - del /q DOC-X |
| 11383 | 135 $(MAKE) -f makefile.nt all |
| 136 cd ..\src | |
| 9803 | 137 |
| 138 # | |
| 139 # The dumped executable | |
| 140 # | |
| 141 emacs: $(EMACS) | |
| 11383 | 142 $(EMACS): $(PREPARED_HEADERS) $(DOC) $(TEMACS) |
|
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
143 !if "$(OS_TYPE)" == "win95" |
|
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
144 move $(BLD)\temacs.exe $(BLD)\emacs.exe |
|
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
145 !else |
| 9803 | 146 cd $(BLD) |
| 147 temacs.exe -batch -l loadup dump | |
| 148 cd ..\.. | |
|
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
149 !endif |
| 9803 | 150 |
| 151 # | |
| 152 # The undumped executable | |
| 153 # | |
|
12178
fc00a306b890
(TEMACS): Depend upon $(BLD).
Geoff Voelker <voelker@cs.washington.edu>
parents:
11940
diff
changeset
|
154 temacs: $(BLD) $(TEMACS) |
|
fc00a306b890
(TEMACS): Depend upon $(BLD).
Geoff Voelker <voelker@cs.washington.edu>
parents:
11940
diff
changeset
|
155 $(TEMACS): $(TLIB1) $(TLIB2) $(TOBJ) $(TRES) |
| 11742 | 156 $(LINK) -out:$(TEMACS) $(LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS) |
| 157 | |
| 158 # | |
|
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
159 # 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
|
160 # it is not necessary on later versions, it is still ok to use it. |
| 11742 | 161 # |
| 162 $(TRES): ..\nt\emacs.rc | |
| 163 $(RC) -i..\nt -Fo$(BLD)\emacs.res $** | |
| 164 $(CVTRES) -r -$(ARCH) -o $@ $(BLD)\emacs.res | |
| 9803 | 165 |
| 166 # | |
| 167 # Build the library. Split up the build into two phases...otherwise we | |
| 168 # run out of command line space. | |
| 169 # | |
| 11742 | 170 $(TLIB1): $(OBJ1) |
| 171 @- $(AR) -out:$@ $** | |
| 172 $(TLIB2): $(OBJ2) | |
| 173 @- $(AR) -out:$@ $** | |
| 9803 | 174 |
| 175 # | |
| 176 # Object files. | |
| 177 # | |
| 178 .c{$(BLD)}.obj: | |
| 179 $(CC) $(CFLAGS) -Fo$@ $< | |
| 180 | |
| 181 # | |
| 182 # Assuming INSTALL_DIR is defined, build and install emacs in it. | |
| 183 # | |
| 184 install: all | |
| 185 - mkdir $(INSTALL_DIR)\bin | |
| 186 $(CP) $(EMACS) $(INSTALL_DIR)\bin | |
| 187 | |
| 188 # | |
| 189 # Maintenance | |
| 190 # | |
|
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
191 clean:; - del /q *~ *.pdb config.h |
| 11383 | 192 - $(DEL_TREE) deleted |
| 193 - $(DEL_TREE) obj | |
| 9803 | 194 |
| 195 # | |
| 196 # These files are the ones that compile conditionally on CANNOT_DUMP... | |
| 197 # this target is mostly used for debugging. | |
| 198 # | |
|
11940
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
199 cleandump:; cd $(BLD) |
|
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
200 - del callproc.obj data.obj dispnew.obj doc.obj editfns.obj emacs.obj lread.obj process.obj sysdep.obj term.obj ntheap.obj unexnt.obj |
|
4636a3916e01
(LIBS): Use BASE_LIBS and ADVAPI32.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11751
diff
changeset
|
201 cd ..\.. |
| 9803 | 202 |
| 203 | |
| 204 ### DEPENDENCIES ### | |
| 205 | |
| 206 EMACS_ROOT = .. | |
| 207 SRC = . | |
| 208 | |
| 209 $(BLD)\abbrev.obj : \ | |
| 210 $(SRC)\abbrev.c \ | |
|
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
|
211 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
212 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 213 $(EMACS_ROOT)\src\config.h \ |
| 214 $(SRC)\lisp.h \ | |
| 215 $(SRC)\commands.h \ | |
| 216 $(SRC)\buffer.h \ | |
| 217 $(SRC)\window.h | |
| 218 | |
| 219 $(BLD)\alloc.obj : \ | |
| 220 $(SRC)\alloc.c \ | |
|
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
|
221 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
222 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 223 $(EMACS_ROOT)\src\config.h \ |
| 224 $(SRC)\lisp.h \ | |
| 225 $(SRC)\dispextern.h \ | |
| 226 $(SRC)\intervals.h \ | |
| 227 $(SRC)\puresize.h \ | |
| 228 $(SRC)\buffer.h \ | |
| 229 $(SRC)\window.h \ | |
| 230 $(SRC)\frame.h \ | |
| 231 $(SRC)\blockinput.h \ | |
| 232 $(SRC)\syssignal.h | |
| 233 | |
| 234 $(BLD)\alloca.obj : \ | |
| 235 $(SRC)\alloca.c \ | |
|
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
|
236 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
237 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 238 $(EMACS_ROOT)\src\config.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
|
239 $(SRC)\s\windowsnt.h \ |
|
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
|
240 $(SRC)\m\intel386.h \ |
| 9803 | 241 $(SRC)\config.h \ |
| 242 $(SRC)\blockinput.h | |
| 243 | |
| 244 $(BLD)\buffer.obj : \ | |
| 245 $(SRC)\buffer.c \ | |
| 246 $(EMACS_ROOT)\nt\inc\sys\param.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
|
247 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
248 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 249 $(EMACS_ROOT)\src\config.h \ |
| 250 $(SRC)\lisp.h \ | |
| 251 $(SRC)\dispextern.h \ | |
| 252 $(SRC)\intervals.h \ | |
| 253 $(SRC)\window.h \ | |
| 254 $(SRC)\commands.h \ | |
| 255 $(SRC)\buffer.h \ | |
| 256 $(SRC)\indent.h \ | |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
257 $(SRC)\blockinput.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
258 $(SRC)\region-cache.h |
| 9803 | 259 |
| 260 $(BLD)\bytecode.obj : \ | |
| 261 $(SRC)\bytecode.c \ | |
| 262 $(SRC)\lisp.h \ | |
| 263 $(SRC)\buffer.h \ | |
| 264 $(SRC)\syntax.h | |
| 265 | |
| 266 $(BLD)\callint.obj : \ | |
| 267 $(SRC)\callint.c \ | |
| 268 $(SRC)\lisp.h \ | |
| 269 $(SRC)\buffer.h \ | |
| 270 $(SRC)\commands.h \ | |
| 271 $(SRC)\keyboard.h \ | |
| 272 $(SRC)\window.h \ | |
| 273 $(SRC)\mocklisp.h | |
| 274 | |
| 275 $(BLD)\callproc.obj : \ | |
| 276 $(SRC)\callproc.c \ | |
|
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
|
277 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
278 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 279 $(EMACS_ROOT)\src\config.h \ |
| 280 $(SRC)\msdos.h \ | |
| 281 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
| 282 $(SRC)\lisp.h \ | |
| 283 $(SRC)\commands.h \ | |
| 284 $(SRC)\buffer.h \ | |
| 285 $(SRC)\process.h \ | |
| 286 $(SRC)\syssignal.h \ | |
| 287 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 288 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 289 $(SRC)\systty.h | |
| 290 | |
| 291 $(BLD)\casefiddle.obj : \ | |
| 292 $(SRC)\casefiddle.c \ | |
|
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
|
293 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
294 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 295 $(EMACS_ROOT)\src\config.h \ |
| 296 $(SRC)\lisp.h \ | |
| 297 $(SRC)\buffer.h \ | |
| 298 $(SRC)\commands.h \ | |
| 299 $(SRC)\syntax.h | |
| 300 $(CC) $(CFLAGS) -Fo$@ casefiddle.c | |
| 301 | |
| 302 $(BLD)\casetab.obj : \ | |
| 303 $(SRC)\casetab.c \ | |
|
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
|
304 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
305 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 306 $(EMACS_ROOT)\src\config.h \ |
| 307 $(SRC)\lisp.h \ | |
| 308 $(SRC)\buffer.h | |
| 309 | |
| 310 $(BLD)\cm.obj : \ | |
| 311 $(SRC)\cm.c \ | |
|
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
|
312 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
313 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 314 $(EMACS_ROOT)\src\config.h \ |
| 315 $(SRC)\cm.h \ | |
| 316 $(SRC)\termhooks.h | |
| 317 | |
| 318 $(BLD)\cmds.obj : \ | |
| 319 $(SRC)\cmds.c \ | |
|
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
|
320 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
321 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 322 $(EMACS_ROOT)\src\config.h \ |
| 323 $(SRC)\lisp.h \ | |
| 324 $(SRC)\commands.h \ | |
| 325 $(SRC)\buffer.h \ | |
| 326 $(SRC)\syntax.h | |
| 327 | |
| 328 $(BLD)\data.obj : \ | |
| 329 $(SRC)\data.c \ | |
|
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
|
330 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
331 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 332 $(EMACS_ROOT)\src\config.h \ |
| 333 $(SRC)\lisp.h \ | |
| 334 $(SRC)\puresize.h \ | |
| 335 $(SRC)\buffer.h \ | |
| 336 $(SRC)\syssignal.h | |
| 337 | |
| 338 $(BLD)\dired.obj : \ | |
| 339 $(SRC)\dired.c \ | |
|
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
|
340 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
341 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 342 $(EMACS_ROOT)\src\config.h \ |
| 343 $(SRC)\vmsdir.h \ | |
| 344 $(SRC)\ndir.h \ | |
| 345 $(SRC)\lisp.h \ | |
| 346 $(SRC)\buffer.h \ | |
| 347 $(SRC)\commands.h \ | |
| 348 $(SRC)\regex.h | |
| 349 | |
| 350 $(BLD)\dispnew.obj : \ | |
| 351 $(SRC)\dispnew.c \ | |
|
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
|
352 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
353 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 354 $(EMACS_ROOT)\src\config.h \ |
| 355 $(SRC)\lisp.h \ | |
| 356 $(SRC)\termchar.h \ | |
| 357 $(SRC)\termopts.h \ | |
| 358 $(SRC)\termhooks.h \ | |
| 359 $(SRC)\cm.h \ | |
| 360 $(SRC)\buffer.h \ | |
| 361 $(SRC)\frame.h \ | |
| 362 $(SRC)\window.h \ | |
| 363 $(SRC)\commands.h \ | |
| 364 $(SRC)\disptab.h \ | |
| 365 $(SRC)\indent.h \ | |
| 366 $(SRC)\dispextern.h \ | |
| 367 $(SRC)\intervals.h \ | |
| 368 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 369 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 370 $(SRC)\systty.h \ | |
| 371 $(SRC)\xterm.h \ | |
| 372 $(SRC)\vmstime.h \ | |
| 373 $(SRC)\systime.h | |
| 374 | |
| 375 $(BLD)\doc.obj : \ | |
| 376 $(SRC)\doc.c \ | |
|
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
|
377 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
378 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 379 $(EMACS_ROOT)\src\config.h \ |
| 380 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 381 $(SRC)\lisp.h \ | |
| 382 $(SRC)\buffer.h \ | |
| 383 $(SRC)\keyboard.h | |
| 384 | |
| 385 $(BLD)\doprnt.obj : \ | |
| 386 $(SRC)\doprnt.c \ | |
|
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
|
387 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
388 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 389 $(EMACS_ROOT)\src\config.h |
| 390 | |
| 391 $(BLD)\dosfns.obj : \ | |
| 392 $(SRC)\dosfns.c \ | |
|
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
|
393 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
394 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 395 $(EMACS_ROOT)\src\config.h \ |
| 396 $(SRC)\lisp.h \ | |
| 397 $(SRC)\buffer.h \ | |
| 398 $(SRC)\termchar.h \ | |
| 399 $(SRC)\termhooks.h \ | |
| 400 $(SRC)\frame.h \ | |
| 401 $(SRC)\dosfns.h \ | |
| 402 $(SRC)\msdos.h | |
| 403 | |
| 404 $(BLD)\editfns.obj : \ | |
| 405 $(SRC)\editfns.c \ | |
|
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
|
406 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
407 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 408 $(EMACS_ROOT)\src\config.h \ |
| 409 $(SRC)\uaf.h \ | |
| 410 $(SRC)\vms-pwd.h \ | |
| 411 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
| 412 $(SRC)\lisp.h \ | |
| 413 $(SRC)\dispextern.h \ | |
| 414 $(SRC)\intervals.h \ | |
| 415 $(SRC)\buffer.h \ | |
| 416 $(SRC)\window.h \ | |
| 417 $(SRC)\vmstime.h \ | |
| 418 $(SRC)\systime.h | |
| 419 | |
| 420 $(BLD)\emacs.obj : \ | |
| 421 $(SRC)\emacs.c \ | |
|
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
|
422 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
423 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 424 $(EMACS_ROOT)\src\config.h \ |
| 425 $(SRC)\lisp.h \ | |
| 426 $(SRC)\commands.h \ | |
| 427 $(SRC)\dispextern.h \ | |
| 428 $(SRC)\intervals.h \ | |
| 429 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 430 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 431 $(SRC)\systty.h \ | |
| 432 $(SRC)\syssignal.h \ | |
| 433 $(SRC)\process.h | |
| 434 | |
| 435 $(BLD)\eval.obj : \ | |
| 436 $(SRC)\eval.c \ | |
|
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
|
437 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
438 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 439 $(EMACS_ROOT)\src\config.h \ |
| 440 $(SRC)\lisp.h \ | |
| 441 $(SRC)\blockinput.h \ | |
| 442 $(SRC)\commands.h \ | |
| 443 $(SRC)\keyboard.h | |
| 444 | |
| 445 $(BLD)\fileio.obj : \ | |
| 446 $(SRC)\fileio.c \ | |
|
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
|
447 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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)\uaf.h \ | |
| 451 $(SRC)\vms-pwd.h \ | |
| 452 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
| 453 $(SRC)\msdos.h \ | |
| 454 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
| 455 $(SRC)\vmsdir.h \ | |
| 456 $(SRC)\lisp.h \ | |
| 457 $(SRC)\dispextern.h \ | |
| 458 $(SRC)\intervals.h \ | |
| 459 $(SRC)\buffer.h \ | |
| 460 $(SRC)\window.h \ | |
| 461 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 462 $(SRC)\vmstime.h \ | |
| 463 $(SRC)\systime.h | |
| 464 | |
| 465 $(BLD)\filelock.obj : \ | |
| 466 $(SRC)\filelock.c \ | |
|
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
|
467 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
468 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 469 $(EMACS_ROOT)\src\config.h \ |
| 470 $(SRC)\uaf.h \ | |
| 471 $(SRC)\vms-pwd.h \ | |
| 472 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
| 473 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 474 $(SRC)\lisp.h \ | |
| 475 $(EMACS_ROOT)\src\paths.h \ | |
| 476 $(SRC)\buffer.h \ | |
| 477 $(SRC)\vmsdir.h \ | |
| 478 $(SRC)\ndir.h | |
| 479 | |
| 480 $(BLD)\filemode.obj : \ | |
| 481 $(SRC)\filemode.c \ | |
|
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
|
482 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
483 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 484 $(EMACS_ROOT)\src\config.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
|
485 $(SRC)\s\windowsnt.h \ |
|
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
|
486 $(SRC)\m\intel386.h \ |
| 9803 | 487 $(SRC)\config.h |
| 488 | |
| 489 $(BLD)\floatfns.obj : \ | |
| 490 $(SRC)\floatfns.c \ | |
|
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
|
491 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
492 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 493 $(EMACS_ROOT)\src\config.h \ |
| 494 $(SRC)\lisp.h \ | |
| 495 $(SRC)\syssignal.h | |
| 496 | |
| 497 $(BLD)\fns.obj : \ | |
| 498 $(SRC)\fns.c \ | |
|
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
|
499 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
500 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 501 $(EMACS_ROOT)\src\config.h \ |
| 502 $(SRC)\lisp.h \ | |
| 503 $(SRC)\commands.h \ | |
| 504 $(SRC)\buffer.h \ | |
| 505 $(SRC)\keyboard.h \ | |
| 506 $(SRC)\dispextern.h \ | |
| 507 $(SRC)\intervals.h | |
| 508 | |
| 509 $(BLD)\frame.obj : \ | |
| 510 $(SRC)\frame.c \ | |
|
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
|
511 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
512 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 513 $(EMACS_ROOT)\src\config.h \ |
| 514 $(SRC)\lisp.h \ | |
| 515 $(SRC)\frame.h \ | |
| 516 $(SRC)\termhooks.h \ | |
| 517 $(SRC)\window.h \ | |
| 518 $(SRC)\buffer.h \ | |
| 519 $(SRC)\commands.h \ | |
| 520 $(SRC)\keyboard.h | |
| 521 | |
| 522 $(BLD)\getloadavg.obj : \ | |
| 523 $(SRC)\getloadavg.c \ | |
| 524 $(EMACS_ROOT)\nt\inc\sys\param.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
|
525 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
526 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 527 $(EMACS_ROOT)\src\config.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
|
528 $(SRC)\s\windowsnt.h \ |
|
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
|
529 $(SRC)\m\intel386.h \ |
| 9803 | 530 $(SRC)\config.h \ |
| 531 $(EMACS_ROOT)\nt\inc\sys\file.h | |
| 532 | |
| 533 $(BLD)\gmalloc.obj : \ | |
| 534 $(SRC)\gmalloc.c \ | |
|
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
|
535 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
536 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 537 $(EMACS_ROOT)\src\config.h \ |
| 538 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
| 539 $(SRC)\getpagesize.h | |
| 540 $(CC) $(CFLAGS) -D__STDC__ -Fo$@ gmalloc.c | |
| 541 | |
| 542 $(BLD)\hftctl.obj : \ | |
| 543 $(SRC)\hftctl.c \ | |
|
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\s\windowsnt.h \ |
|
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
|
545 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 546 $(EMACS_ROOT)\src\config.h \ |
| 547 $(EMACS_ROOT)\nt\inc\sys\ioctl.h | |
| 548 | |
| 549 $(BLD)\indent.obj : \ | |
| 550 $(SRC)\indent.c \ | |
|
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
|
551 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
552 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 553 $(EMACS_ROOT)\src\config.h \ |
| 554 $(SRC)\lisp.h \ | |
| 555 $(SRC)\buffer.h \ | |
| 556 $(SRC)\indent.h \ | |
| 557 $(SRC)\frame.h \ | |
| 558 $(SRC)\window.h \ | |
| 559 $(SRC)\termchar.h \ | |
| 560 $(SRC)\termopts.h \ | |
| 561 $(SRC)\disptab.h \ | |
| 562 $(SRC)\dispextern.h \ | |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
563 $(SRC)\intervals.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
564 $(SRC)\region-cache.h |
| 9803 | 565 |
| 566 $(BLD)\insdel.obj : \ | |
| 567 $(SRC)\insdel.c \ | |
|
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
|
568 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
569 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 570 $(EMACS_ROOT)\src\config.h \ |
| 571 $(SRC)\lisp.h \ | |
| 572 $(SRC)\dispextern.h \ | |
| 573 $(SRC)\intervals.h \ | |
| 574 $(SRC)\buffer.h \ | |
| 575 $(SRC)\window.h \ | |
| 576 $(SRC)\blockinput.h | |
| 577 | |
| 578 $(BLD)\intervals.obj : \ | |
| 579 $(SRC)\intervals.c \ | |
|
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
|
580 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
581 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 582 $(EMACS_ROOT)\src\config.h \ |
| 583 $(SRC)\lisp.h \ | |
| 584 $(SRC)\dispextern.h \ | |
| 585 $(SRC)\intervals.h \ | |
| 586 $(SRC)\buffer.h \ | |
| 587 $(SRC)\puresize.h | |
| 588 $(CC) $(CFLAGS) -Fo$@ intervals.c | |
| 589 | |
| 590 $(BLD)\keyboard.obj : \ | |
| 591 $(SRC)\keyboard.c \ | |
|
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
|
592 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
593 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 594 $(EMACS_ROOT)\src\config.h \ |
| 595 $(SRC)\termchar.h \ | |
| 596 $(SRC)\termopts.h \ | |
| 597 $(SRC)\lisp.h \ | |
| 598 $(SRC)\termhooks.h \ | |
| 599 $(SRC)\macros.h \ | |
| 600 $(SRC)\frame.h \ | |
| 601 $(SRC)\window.h \ | |
| 602 $(SRC)\commands.h \ | |
| 603 $(SRC)\buffer.h \ | |
| 604 $(SRC)\disptab.h \ | |
| 605 $(SRC)\keyboard.h \ | |
| 606 $(SRC)\dispextern.h \ | |
| 607 $(SRC)\intervals.h \ | |
| 608 $(SRC)\blockinput.h \ | |
| 609 $(SRC)\msdos.h \ | |
| 610 $(SRC)\syssignal.h \ | |
| 611 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 612 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 613 $(SRC)\systty.h \ | |
| 614 $(SRC)\xterm.h \ | |
| 615 $(SRC)\vmstime.h \ | |
| 616 $(SRC)\systime.h | |
| 617 | |
| 618 $(BLD)\keymap.obj : \ | |
| 619 $(SRC)\keymap.c \ | |
|
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
|
620 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
621 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 622 $(EMACS_ROOT)\src\config.h \ |
| 623 $(SRC)\lisp.h \ | |
| 624 $(SRC)\commands.h \ | |
| 625 $(SRC)\buffer.h \ | |
| 626 $(SRC)\keyboard.h \ | |
| 627 $(SRC)\termhooks.h \ | |
| 628 $(SRC)\blockinput.h | |
| 629 | |
| 630 $(BLD)\lastfile.obj : \ | |
| 631 $(SRC)\lastfile.c | |
| 632 | |
| 633 $(BLD)\lread.obj : \ | |
| 634 $(SRC)\lread.c \ | |
|
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
|
635 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
636 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 637 $(EMACS_ROOT)\src\config.h \ |
| 638 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 639 $(SRC)\lisp.h \ | |
| 640 $(SRC)\buffer.h \ | |
| 641 $(EMACS_ROOT)\src\paths.h \ | |
| 642 $(SRC)\commands.h \ | |
| 643 $(SRC)\keyboard.h \ | |
| 644 $(SRC)\termhooks.h \ | |
| 645 $(SRC)\msdos.h | |
| 646 | |
| 647 $(BLD)\macros.obj : \ | |
| 648 $(SRC)\macros.c \ | |
|
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
|
649 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
650 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 651 $(EMACS_ROOT)\src\config.h \ |
| 652 $(SRC)\lisp.h \ | |
| 653 $(SRC)\macros.h \ | |
| 654 $(SRC)\commands.h \ | |
| 655 $(SRC)\buffer.h \ | |
| 656 $(SRC)\window.h | |
| 657 | |
| 658 $(BLD)\marker.obj : \ | |
| 659 $(SRC)\marker.c \ | |
|
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
|
660 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
661 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 662 $(EMACS_ROOT)\src\config.h \ |
| 663 $(SRC)\lisp.h \ | |
| 664 $(SRC)\buffer.h | |
| 665 | |
| 666 $(BLD)\minibuf.obj : \ | |
| 667 $(SRC)\minibuf.c \ | |
|
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
|
668 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
669 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 670 $(EMACS_ROOT)\src\config.h \ |
| 671 $(SRC)\lisp.h \ | |
| 672 $(SRC)\commands.h \ | |
| 673 $(SRC)\buffer.h \ | |
| 674 $(SRC)\dispextern.h \ | |
| 675 $(SRC)\frame.h \ | |
| 676 $(SRC)\window.h \ | |
| 677 $(SRC)\syntax.h | |
| 678 | |
| 679 $(BLD)\mocklisp.obj : \ | |
| 680 $(SRC)\mocklisp.c \ | |
|
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
|
681 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
682 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 683 $(EMACS_ROOT)\src\config.h \ |
| 684 $(SRC)\lisp.h \ | |
| 685 $(SRC)\buffer.h | |
| 686 | |
| 687 $(BLD)\nt.obj : \ | |
| 688 $(SRC)\nt.c \ | |
|
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
|
689 $(SRC)\s\windowsnt.h \ |
|
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
|
690 $(SRC)\m\intel386.h \ |
| 9803 | 691 $(SRC)\config.h \ |
| 692 $(SRC)\lisp.h \ | |
| 693 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
| 694 $(SRC)\ntheap.h | |
| 695 | |
| 696 $(BLD)\ntheap.obj : \ | |
| 697 $(SRC)\ntheap.c \ | |
| 698 $(SRC)\ntheap.h | |
| 699 | |
| 700 $(BLD)\ntinevt.obj : \ | |
| 701 $(SRC)\ntinevt.c \ | |
|
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
|
702 $(SRC)\s\windowsnt.h \ |
|
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
|
703 $(SRC)\m\intel386.h \ |
| 9803 | 704 $(SRC)\config.h \ |
| 705 $(SRC)\lisp.h \ | |
| 706 $(SRC)\frame.h \ | |
| 707 $(SRC)\blockinput.h \ | |
| 708 $(SRC)\termhooks.h | |
| 709 | |
| 710 $(BLD)\ntproc.obj : \ | |
| 711 $(SRC)\ntproc.c \ | |
|
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
|
712 $(SRC)\s\windowsnt.h \ |
|
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
|
713 $(SRC)\m\intel386.h \ |
| 9803 | 714 $(SRC)\config.h \ |
| 715 $(SRC)\lisp.h \ | |
| 716 $(SRC)\nt.h \ | |
| 717 $(SRC)\vmstime.h \ | |
| 718 $(SRC)\systime.h | |
| 719 | |
| 720 $(BLD)\ntterm.obj : \ | |
| 721 $(SRC)\ntterm.c \ | |
|
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
|
722 $(SRC)\s\windowsnt.h \ |
|
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
|
723 $(SRC)\m\intel386.h \ |
| 9803 | 724 $(SRC)\config.h \ |
| 725 $(SRC)\lisp.h \ | |
| 726 $(SRC)\frame.h \ | |
| 727 $(SRC)\disptab.h \ | |
| 728 $(SRC)\termhooks.h \ | |
| 729 $(SRC)\ntinevt.h | |
| 730 | |
| 731 $(BLD)\prefix-args.obj : \ | |
| 732 $(SRC)\prefix-args.c | |
| 733 | |
| 734 $(BLD)\print.obj : \ | |
| 735 $(SRC)\print.c \ | |
|
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
|
736 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
737 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 738 $(EMACS_ROOT)\src\config.h \ |
| 739 $(SRC)\lisp.h \ | |
| 740 $(SRC)\buffer.h \ | |
| 741 $(SRC)\frame.h \ | |
| 742 $(SRC)\window.h \ | |
| 743 $(SRC)\process.h \ | |
| 744 $(SRC)\termchar.h \ | |
| 745 $(SRC)\dispextern.h \ | |
| 746 $(SRC)\intervals.h | |
| 747 | |
| 748 $(BLD)\process.obj : \ | |
| 749 $(SRC)\process.c \ | |
|
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
|
750 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
751 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 752 $(EMACS_ROOT)\src\config.h \ |
| 753 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 754 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 755 $(SRC)\systty.h \ | |
| 756 $(SRC)\window.h \ | |
| 757 $(SRC)\buffer.h \ | |
| 758 $(SRC)\process.h \ | |
| 759 $(SRC)\termhooks.h \ | |
| 760 $(SRC)\commands.h \ | |
| 761 $(SRC)\frame.h \ | |
| 762 $(SRC)\syssignal.h \ | |
| 763 $(SRC)\vmsproc.h \ | |
| 764 $(SRC)\syswait.h \ | |
| 765 $(SRC)\lisp.h \ | |
| 766 $(SRC)\vmstime.h \ | |
| 767 $(SRC)\systime.h \ | |
| 768 $(SRC)\termopts.h | |
| 769 | |
| 770 $(BLD)\ralloc.obj : \ | |
| 771 $(SRC)\ralloc.c \ | |
|
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
|
772 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
773 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 774 $(EMACS_ROOT)\src\config.h \ |
| 775 $(SRC)\lisp.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
|
776 $(SRC)\s\windowsnt.h \ |
|
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
|
777 $(SRC)\m\intel386.h \ |
| 9803 | 778 $(SRC)\config.h \ |
| 779 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
| 780 $(SRC)\getpagesize.h | |
| 781 | |
| 782 $(BLD)\regex.obj : \ | |
| 783 $(SRC)\regex.c \ | |
|
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
|
784 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
785 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 786 $(EMACS_ROOT)\src\config.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
|
787 $(SRC)\s\windowsnt.h \ |
|
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 $(SRC)\m\intel386.h \ |
| 9803 | 789 $(SRC)\config.h \ |
| 790 $(SRC)\lisp.h \ | |
| 791 $(SRC)\buffer.h \ | |
| 792 $(SRC)\syntax.h \ | |
| 793 $(SRC)\regex.h | |
| 794 | |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
795 $(BLD)\region-cache.obj : \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
796 $(SRC)\region-cache.c \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
797 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
798 $(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
|
799 $(EMACS_ROOT)\src\config.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
800 $(SRC)\lisp.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
801 $(SRC)\buffer.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
802 $(SRC)\region-cache.h |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
803 |
| 9803 | 804 $(BLD)\scroll.obj : \ |
| 805 $(SRC)\scroll.c \ | |
|
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
|
806 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
807 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 808 $(EMACS_ROOT)\src\config.h \ |
| 809 $(SRC)\termchar.h \ | |
| 810 $(SRC)\lisp.h \ | |
| 811 $(SRC)\dispextern.h \ | |
| 812 $(SRC)\frame.h | |
| 813 | |
| 814 $(BLD)\search.obj : \ | |
| 815 $(SRC)\search.c \ | |
|
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
|
816 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
817 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 818 $(EMACS_ROOT)\src\config.h \ |
| 819 $(SRC)\lisp.h \ | |
| 820 $(SRC)\syntax.h \ | |
| 821 $(SRC)\buffer.h \ | |
| 822 $(SRC)\commands.h \ | |
| 823 $(SRC)\blockinput.h \ | |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
824 $(SRC)\regex.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
825 $(SRC)\region-cache.h |
| 9803 | 826 |
| 11742 | 827 $(BLD)\strftime.obj : \ |
| 828 $(SRC)\strftime.c \ | |
| 829 $(EMACS_ROOT)\src\s\windowsnt.h \ | |
| 830 $(EMACS_ROOT)\src\m\intel386.h \ | |
| 831 $(EMACS_ROOT)\src\config.h | |
| 832 $(CC) $(CFLAGS) -Dstrftime=emacs_strftime -Fo$@ strftime.c | |
| 833 | |
| 9803 | 834 $(BLD)\sunfns.obj : \ |
| 835 $(SRC)\sunfns.c \ | |
|
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 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
837 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 838 $(EMACS_ROOT)\src\config.h \ |
| 839 $(SRC)\lisp.h \ | |
| 840 $(SRC)\window.h \ | |
| 841 $(SRC)\buffer.h \ | |
| 842 $(SRC)\termhooks.h | |
| 843 | |
| 844 $(BLD)\syntax.obj : \ | |
| 845 $(SRC)\syntax.c \ | |
|
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
|
846 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
847 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 848 $(EMACS_ROOT)\src\config.h \ |
| 849 $(SRC)\lisp.h \ | |
| 850 $(SRC)\commands.h \ | |
| 851 $(SRC)\buffer.h \ | |
| 852 $(SRC)\syntax.h | |
| 853 | |
| 854 $(BLD)\sysdep.obj : \ | |
| 855 $(SRC)\sysdep.c \ | |
|
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
|
856 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
857 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 858 $(EMACS_ROOT)\src\config.h \ |
| 859 $(SRC)\lisp.h \ | |
| 860 $(SRC)\blockinput.h \ | |
| 861 $(SRC)\dosfns.h \ | |
| 862 $(SRC)\msdos.h \ | |
| 863 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
| 864 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 865 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 866 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 867 $(SRC)\systty.h \ | |
| 868 $(SRC)\vmsproc.h \ | |
| 869 $(SRC)\syswait.h \ | |
| 870 $(SRC)\frame.h \ | |
| 871 $(SRC)\window.h \ | |
| 872 $(SRC)\termhooks.h \ | |
| 873 $(SRC)\termchar.h \ | |
| 874 $(SRC)\termopts.h \ | |
| 875 $(SRC)\dispextern.h \ | |
| 876 $(SRC)\process.h \ | |
| 877 $(SRC)\vmsdir.h \ | |
| 878 $(SRC)\ndir.h \ | |
| 879 $(SRC)\syssignal.h \ | |
| 880 $(SRC)\vmstime.h \ | |
| 881 $(SRC)\systime.h \ | |
| 882 $(SRC)\uaf.h \ | |
| 883 $(SRC)\vms-pwd.h \ | |
| 884 $(EMACS_ROOT)\src\acldef.h \ | |
| 885 $(EMACS_ROOT)\src\chpdef.h | |
| 886 | |
| 887 $(BLD)\term.obj : \ | |
| 888 $(SRC)\term.c \ | |
|
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
|
889 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 891 $(EMACS_ROOT)\src\config.h \ |
| 892 $(SRC)\termchar.h \ | |
| 893 $(SRC)\termopts.h \ | |
| 894 $(SRC)\cm.h \ | |
| 895 $(SRC)\lisp.h \ | |
| 896 $(SRC)\frame.h \ | |
| 897 $(SRC)\disptab.h \ | |
| 898 $(SRC)\termhooks.h \ | |
| 899 $(SRC)\keyboard.h | |
| 900 | |
| 901 $(BLD)\termcap.obj : \ | |
| 902 $(SRC)\termcap.c \ | |
|
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
|
903 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
904 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 905 $(EMACS_ROOT)\src\config.h \ |
| 906 $(EMACS_ROOT)\nt\inc\sys\file.h | |
| 907 | |
| 908 $(BLD)\terminfo.obj : \ | |
| 909 $(SRC)\terminfo.c | |
| 910 | |
| 911 $(BLD)\textprop.obj : \ | |
| 912 $(SRC)\textprop.c \ | |
|
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
|
913 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
914 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 915 $(EMACS_ROOT)\src\config.h \ |
| 916 $(SRC)\lisp.h \ | |
| 917 $(SRC)\dispextern.h \ | |
| 918 $(SRC)\intervals.h \ | |
| 919 $(SRC)\buffer.h \ | |
| 920 $(SRC)\window.h | |
| 921 | |
| 922 $(BLD)\tparam.obj : \ | |
| 923 $(SRC)\tparam.c \ | |
|
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
|
924 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
925 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 926 $(EMACS_ROOT)\src\config.h |
| 927 | |
| 928 $(BLD)\undo.obj : \ | |
| 929 $(SRC)\undo.c \ | |
|
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\s\windowsnt.h \ |
|
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
|
931 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 932 $(EMACS_ROOT)\src\config.h \ |
| 933 $(SRC)\lisp.h \ | |
| 934 $(SRC)\buffer.h \ | |
| 935 $(SRC)\commands.h | |
| 936 | |
| 937 $(BLD)\unexnt.obj : \ | |
| 938 $(SRC)\unexnt.c \ | |
| 939 $(SRC)\ntheap.h | |
| 940 | |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
941 $(BLD)\vm-limit.obj : \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
942 $(SRC)\vm-limit.c \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
943 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
944 $(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
|
945 $(EMACS_ROOT)\src\config.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
946 $(SRC)\mem-limits.h |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
947 |
| 9803 | 948 $(BLD)\widget.obj : \ |
| 949 $(SRC)\widget.c \ | |
|
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
|
950 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
951 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 952 $(EMACS_ROOT)\src\config.h \ |
| 953 $(SRC)\lisp.h \ | |
| 954 $(SRC)\xterm.h \ | |
| 955 $(SRC)\frame.h \ | |
| 956 $(SRC)\dispextern.h \ | |
| 957 $(SRC)\widget.h \ | |
| 958 $(SRC)\widgetprv.h | |
| 959 | |
| 960 $(BLD)\window.obj : \ | |
| 961 $(SRC)\window.c \ | |
|
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
|
962 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
963 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 964 $(EMACS_ROOT)\src\config.h \ |
| 965 $(SRC)\lisp.h \ | |
| 966 $(SRC)\buffer.h \ | |
| 967 $(SRC)\frame.h \ | |
| 968 $(SRC)\window.h \ | |
| 969 $(SRC)\commands.h \ | |
| 970 $(SRC)\indent.h \ | |
| 971 $(SRC)\termchar.h \ | |
| 972 $(SRC)\disptab.h \ | |
| 973 $(SRC)\keyboard.h | |
| 974 | |
| 975 $(BLD)\xdisp.obj : \ | |
| 976 $(SRC)\xdisp.c \ | |
|
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
|
977 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
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
|
978 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 979 $(EMACS_ROOT)\src\config.h \ |
| 980 $(SRC)\lisp.h \ | |
| 981 $(SRC)\frame.h \ | |
| 982 $(SRC)\window.h \ | |
| 983 $(SRC)\termchar.h \ | |
| 984 $(SRC)\buffer.h \ | |
| 985 $(SRC)\indent.h \ | |
| 986 $(SRC)\commands.h \ | |
| 987 $(SRC)\macros.h \ | |
| 988 $(SRC)\disptab.h \ | |
| 989 $(SRC)\termhooks.h \ | |
| 990 $(SRC)\dispextern.h \ | |
| 991 $(SRC)\intervals.h |
