comparison src/makefile.nt @ 30063:f5bcbb9efca6

Add support for `bootstrap' and related targets. Include minimal debug info in emacs.exe in release build. Remove all dependencies on lisp.h, and fixup some others.
author Andrew Innes <andrewi@gnu.org>
date Wed, 05 Jul 2000 16:37:46 +0000
parents 6daef241d794
children 53a2817c6ee4
comparison
equal deleted inserted replaced
30062:9a026d470bc9 30063:f5bcbb9efca6
66 TLASTLIB = $(BLD)\lastfile.lib 66 TLASTLIB = $(BLD)\lastfile.lib
67 67
68 # see comments in allocate_heap in w32heap.c before changing any of the 68 # see comments in allocate_heap in w32heap.c before changing any of the
69 # -stack, -heap, or -base settings. 69 # -stack, -heap, or -base settings.
70 !if "$(BUILD_TYPE)" == "spd" 70 !if "$(BUILD_TYPE)" == "spd"
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 71 LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -debugtype:both -pdb:$(BLD)\temacs.pdb -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map -swaprun:net -swaprun:cd
72 !else 72 !else
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) 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)
74 !endif 74 !endif
75 75
76 # 76 #
196 # Make sure we have the DOC file in the right place. 196 # Make sure we have the DOC file in the right place.
197 # 197 #
198 DOC = $(OBJDIR)\etc\DOC-X 198 DOC = $(OBJDIR)\etc\DOC-X
199 $(DOC):; cd ..\lib-src 199 $(DOC):; cd ..\lib-src
200 - $(DEL) DOC-X 200 - $(DEL) DOC-X
201 $(MAKE) -f makefile.nt all 201 $(MAKE) $(MFLAGS) -f makefile.nt all
202 cd ..\src 202 cd ..\src
203 203
204 # 204 #
205 # The dumped executable 205 # The dumped executable
206 # 206 #
207 emacs: $(EMACS) 207 emacs: $(EMACS)
208 $(EMACS): $(PREPARED_HEADERS) $(DOC) $(TEMACS) 208 $(EMACS): $(DOC) $(TEMACS)
209 cd $(BLD) 209 cd $(BLD)
210 $(MAKEDIR)\$(BLD)\temacs.exe -batch -l loadup dump 210 $(MAKEDIR)\$(BLD)\temacs.exe -batch -l loadup dump
211 cd ..\.. 211 cd ..\..
212 212
213 # 213 #
215 # Note the extra post-link step to insert a static preload heap section. 215 # Note the extra post-link step to insert a static preload heap section.
216 # If preload runs out of memory, increase the last argument to addsection 216 # If preload runs out of memory, increase the last argument to addsection
217 # (it is the preload heap size in MB). 217 # (it is the preload heap size in MB).
218 # 218 #
219 temacs: $(BLD) $(TEMACS) 219 temacs: $(BLD) $(TEMACS)
220 $(TEMACS): $(TLIB0) $(TLIB1) $(TLIB2) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES) 220 $(TEMACS): $(PREPARED_HEADERS) $(TLIB0) $(TLIB1) $(TLIB2) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES)
221 $(LINK) -out:$(TEMACS_TMP) $(LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS) 221 $(LINK) -out:$(TEMACS_TMP) $(LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS)
222 ..\nt\$(BLD)\addsection $(TEMACS_TMP) $(TEMACS) EMHEAP 16 222 ..\nt\$(BLD)\addsection $(TEMACS_TMP) $(TEMACS) EMHEAP 16
223
224 bootstrap: bootstrap-emacs
225
226 #
227 # Build a temacs with a sufficiently large PURESIZE to load the
228 # Lisp files from loadup.el in source form.
229 #
230 bootstrap-temacs: bootstrap-clean
231 $(MAKE) $(MFLAGS) -f makefile.nt temacs CFLAGS="$(CFLAGS) -DPURESIZE=5000000"
232
233 #
234 # Dump an Emacs executable named bootstrap-emacs containing the
235 # files from loadup.el in source form.
236 #
237 bootstrap-emacs: bootstrap-temacs
238 cd $(BLD)
239 $(MAKEDIR)\$(BLD)\temacs.exe -batch -l loadup bootstrap
240 cd ..\..
241 - mkdir ..\bin
242 $(CP) $(EMACS) ..\bin
243
244 #
245 # Force recompile of files that depend on PURESIZE
246 #
247 bootstrap-clean:
248 - $(DEL) $(BLD)\alloc.obj
249 - $(DEL) $(BLD)\data.obj
250 - $(DEL) $(BLD)\intervals.obj
251 - $(DEL) $(BLD)\keyboard.obj
252 - $(DEL) $(BLD)\keymap.obj
223 253
224 # 254 #
225 # The resource file. NT 3.10 requires the use of cvtres; even though 255 # The resource file. NT 3.10 requires the use of cvtres; even though
226 # it is not necessary on later versions, it is still ok to use it. 256 # it is not necessary on later versions, it is still ok to use it.
227 # 257 #
289 $(BLD)\abbrev.obj : \ 319 $(BLD)\abbrev.obj : \
290 $(SRC)\abbrev.c \ 320 $(SRC)\abbrev.c \
291 $(EMACS_ROOT)\src\s\ms-w32.h \ 321 $(EMACS_ROOT)\src\s\ms-w32.h \
292 $(EMACS_ROOT)\src\m\intel386.h \ 322 $(EMACS_ROOT)\src\m\intel386.h \
293 $(EMACS_ROOT)\src\config.h \ 323 $(EMACS_ROOT)\src\config.h \
294 $(SRC)\lisp.h \
295 $(SRC)\commands.h \ 324 $(SRC)\commands.h \
296 $(SRC)\buffer.h \ 325 $(SRC)\buffer.h \
297 $(SRC)\window.h 326 $(SRC)\window.h
298 327
299 $(BLD)\alloc.obj : \ 328 $(BLD)\alloc.obj : \
300 $(SRC)\alloc.c \ 329 $(SRC)\alloc.c \
301 $(EMACS_ROOT)\src\s\ms-w32.h \ 330 $(EMACS_ROOT)\src\s\ms-w32.h \
302 $(EMACS_ROOT)\src\m\intel386.h \ 331 $(EMACS_ROOT)\src\m\intel386.h \
303 $(EMACS_ROOT)\src\config.h \ 332 $(EMACS_ROOT)\src\config.h \
304 $(SRC)\lisp.h \ 333 $(SRC)\dispextern.h \
305 $(SRC)\dispextern.h \
306 $(SRC)\w32gui.h \
307 $(SRC)\intervals.h \ 334 $(SRC)\intervals.h \
308 $(SRC)\composite.h \ 335 $(SRC)\composite.h \
309 $(SRC)\puresize.h \ 336 $(SRC)\puresize.h \
310 $(SRC)\buffer.h \ 337 $(SRC)\buffer.h \
311 $(SRC)\window.h \ 338 $(SRC)\window.h \
329 $(EMACS_ROOT)\src\m\intel386.h \ 356 $(EMACS_ROOT)\src\m\intel386.h \
330 $(EMACS_ROOT)\src\config.h \ 357 $(EMACS_ROOT)\src\config.h \
331 $(SRC)\s\ms-w32.h \ 358 $(SRC)\s\ms-w32.h \
332 $(SRC)\m\intel386.h \ 359 $(SRC)\m\intel386.h \
333 $(SRC)\config.h \ 360 $(SRC)\config.h \
334 $(SRC)\lisp.h \
335 $(SRC)\atimer.h \ 361 $(SRC)\atimer.h \
336 $(SRC)\syssignal.h \ 362 $(SRC)\syssignal.h \
337 $(SRC)\systime.h \ 363 $(SRC)\systime.h \
338 $(SRC)\blockinput.h 364 $(SRC)\blockinput.h
339 365
341 $(SRC)\buffer.c \ 367 $(SRC)\buffer.c \
342 $(EMACS_ROOT)\nt\inc\sys\param.h \ 368 $(EMACS_ROOT)\nt\inc\sys\param.h \
343 $(EMACS_ROOT)\src\s\ms-w32.h \ 369 $(EMACS_ROOT)\src\s\ms-w32.h \
344 $(EMACS_ROOT)\src\m\intel386.h \ 370 $(EMACS_ROOT)\src\m\intel386.h \
345 $(EMACS_ROOT)\src\config.h \ 371 $(EMACS_ROOT)\src\config.h \
346 $(SRC)\lisp.h \ 372 $(SRC)\dispextern.h \
347 $(SRC)\dispextern.h \
348 $(SRC)\w32gui.h \
349 $(SRC)\intervals.h \ 373 $(SRC)\intervals.h \
350 $(SRC)\composite.h \ 374 $(SRC)\composite.h \
375 $(SRC)\frame.h \
351 $(SRC)\window.h \ 376 $(SRC)\window.h \
352 $(SRC)\commands.h \ 377 $(SRC)\commands.h \
353 $(SRC)\buffer.h \ 378 $(SRC)\buffer.h \
354 $(SRC)\indent.h \ 379 $(SRC)\indent.h \
355 $(SRC)\blockinput.h \ 380 $(SRC)\blockinput.h \
358 $(BLD)\bytecode.obj : \ 383 $(BLD)\bytecode.obj : \
359 $(SRC)\bytecode.c \ 384 $(SRC)\bytecode.c \
360 $(EMACS_ROOT)\src\s\ms-w32.h \ 385 $(EMACS_ROOT)\src\s\ms-w32.h \
361 $(EMACS_ROOT)\src\m\intel386.h \ 386 $(EMACS_ROOT)\src\m\intel386.h \
362 $(EMACS_ROOT)\src\config.h \ 387 $(EMACS_ROOT)\src\config.h \
363 $(SRC)\lisp.h \
364 $(SRC)\buffer.h \ 388 $(SRC)\buffer.h \
365 $(SRC)\syntax.h 389 $(SRC)\syntax.h
366 390
367 $(BLD)\callint.obj : \ 391 $(BLD)\callint.obj : \
368 $(SRC)\callint.c \ 392 $(SRC)\callint.c \
369 $(EMACS_ROOT)\src\s\ms-w32.h \ 393 $(EMACS_ROOT)\src\s\ms-w32.h \
370 $(EMACS_ROOT)\src\m\intel386.h \ 394 $(EMACS_ROOT)\src\m\intel386.h \
371 $(EMACS_ROOT)\src\config.h \ 395 $(EMACS_ROOT)\src\config.h \
372 $(SRC)\lisp.h \
373 $(SRC)\buffer.h \ 396 $(SRC)\buffer.h \
374 $(SRC)\commands.h \ 397 $(SRC)\commands.h \
375 $(SRC)\keyboard.h \ 398 $(SRC)\keyboard.h \
376 $(SRC)\window.h \ 399 $(SRC)\window.h \
377 $(SRC)\mocklisp.h 400 $(SRC)\mocklisp.h
381 $(EMACS_ROOT)\src\s\ms-w32.h \ 404 $(EMACS_ROOT)\src\s\ms-w32.h \
382 $(EMACS_ROOT)\src\m\intel386.h \ 405 $(EMACS_ROOT)\src\m\intel386.h \
383 $(EMACS_ROOT)\src\config.h \ 406 $(EMACS_ROOT)\src\config.h \
384 $(SRC)\msdos.h \ 407 $(SRC)\msdos.h \
385 $(EMACS_ROOT)\nt\inc\sys\param.h \ 408 $(EMACS_ROOT)\nt\inc\sys\param.h \
386 $(SRC)\lisp.h \
387 $(SRC)\commands.h \ 409 $(SRC)\commands.h \
388 $(SRC)\buffer.h \ 410 $(SRC)\buffer.h \
389 $(SRC)\process.h \ 411 $(SRC)\process.h \
390 $(SRC)\syssignal.h \ 412 $(SRC)\syssignal.h \
391 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ 413 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
395 $(BLD)\casefiddle.obj : \ 417 $(BLD)\casefiddle.obj : \
396 $(SRC)\casefiddle.c \ 418 $(SRC)\casefiddle.c \
397 $(EMACS_ROOT)\src\s\ms-w32.h \ 419 $(EMACS_ROOT)\src\s\ms-w32.h \
398 $(EMACS_ROOT)\src\m\intel386.h \ 420 $(EMACS_ROOT)\src\m\intel386.h \
399 $(EMACS_ROOT)\src\config.h \ 421 $(EMACS_ROOT)\src\config.h \
400 $(SRC)\lisp.h \
401 $(SRC)\buffer.h \ 422 $(SRC)\buffer.h \
402 $(SRC)\commands.h \ 423 $(SRC)\commands.h \
403 $(SRC)\syntax.h 424 $(SRC)\syntax.h
404 $(CC) $(CFLAGS) -Fo$@ casefiddle.c 425 $(CC) $(CFLAGS) -Fo$@ casefiddle.c
405 426
406 $(BLD)\casetab.obj : \ 427 $(BLD)\casetab.obj : \
407 $(SRC)\casetab.c \ 428 $(SRC)\casetab.c \
408 $(EMACS_ROOT)\src\s\ms-w32.h \ 429 $(EMACS_ROOT)\src\s\ms-w32.h \
409 $(EMACS_ROOT)\src\m\intel386.h \ 430 $(EMACS_ROOT)\src\m\intel386.h \
410 $(EMACS_ROOT)\src\config.h \ 431 $(EMACS_ROOT)\src\config.h \
411 $(SRC)\lisp.h \
412 $(SRC)\buffer.h 432 $(SRC)\buffer.h
413 433
414 $(BLD)\cm.obj : \ 434 $(BLD)\cm.obj : \
415 $(SRC)\cm.c \ 435 $(SRC)\cm.c \
416 $(EMACS_ROOT)\src\s\ms-w32.h \ 436 $(EMACS_ROOT)\src\s\ms-w32.h \
422 $(BLD)\cmds.obj : \ 442 $(BLD)\cmds.obj : \
423 $(SRC)\cmds.c \ 443 $(SRC)\cmds.c \
424 $(EMACS_ROOT)\src\s\ms-w32.h \ 444 $(EMACS_ROOT)\src\s\ms-w32.h \
425 $(EMACS_ROOT)\src\m\intel386.h \ 445 $(EMACS_ROOT)\src\m\intel386.h \
426 $(EMACS_ROOT)\src\config.h \ 446 $(EMACS_ROOT)\src\config.h \
427 $(SRC)\lisp.h \
428 $(SRC)\commands.h \ 447 $(SRC)\commands.h \
429 $(SRC)\buffer.h \ 448 $(SRC)\buffer.h \
430 $(SRC)\syntax.h 449 $(SRC)\syntax.h
450
451 $(BLD)\composite.obj : \
452 $(SRC)\composite.c \
453 $(SRC)\buffer.h \
454 $(SRC)\charset.h \
455 $(SRC)\intervals.h \
456 $(SRC)\composite.h \
457 $(EMACS_ROOT)\src\s\ms-w32.h \
458 $(EMACS_ROOT)\src\m\intel386.h \
459 $(EMACS_ROOT)\src\config.h
431 460
432 $(BLD)\data.obj : \ 461 $(BLD)\data.obj : \
433 $(SRC)\data.c \ 462 $(SRC)\data.c \
434 $(EMACS_ROOT)\src\s\ms-w32.h \ 463 $(EMACS_ROOT)\src\s\ms-w32.h \
435 $(EMACS_ROOT)\src\m\intel386.h \ 464 $(EMACS_ROOT)\src\m\intel386.h \
436 $(EMACS_ROOT)\src\config.h \ 465 $(EMACS_ROOT)\src\config.h \
437 $(SRC)\lisp.h \
438 $(SRC)\puresize.h \ 466 $(SRC)\puresize.h \
439 $(SRC)\buffer.h \ 467 $(SRC)\buffer.h \
440 $(SRC)\syssignal.h 468 $(SRC)\syssignal.h
441 469
442 $(BLD)\dired.obj : \ 470 $(BLD)\dired.obj : \
444 $(EMACS_ROOT)\src\s\ms-w32.h \ 472 $(EMACS_ROOT)\src\s\ms-w32.h \
445 $(EMACS_ROOT)\src\m\intel386.h \ 473 $(EMACS_ROOT)\src\m\intel386.h \
446 $(EMACS_ROOT)\src\config.h \ 474 $(EMACS_ROOT)\src\config.h \
447 $(SRC)\vmsdir.h \ 475 $(SRC)\vmsdir.h \
448 $(SRC)\ndir.h \ 476 $(SRC)\ndir.h \
449 $(SRC)\lisp.h \
450 $(SRC)\buffer.h \ 477 $(SRC)\buffer.h \
451 $(SRC)\commands.h \ 478 $(SRC)\commands.h \
452 $(SRC)\regex.h 479 $(SRC)\regex.h
453 480
454 $(BLD)\dispnew.obj : \ 481 $(BLD)\dispnew.obj : \
455 $(SRC)\dispnew.c \ 482 $(SRC)\dispnew.c \
456 $(EMACS_ROOT)\src\s\ms-w32.h \ 483 $(EMACS_ROOT)\src\s\ms-w32.h \
457 $(EMACS_ROOT)\src\m\intel386.h \ 484 $(EMACS_ROOT)\src\m\intel386.h \
458 $(EMACS_ROOT)\src\config.h \ 485 $(EMACS_ROOT)\src\config.h \
459 $(SRC)\lisp.h \
460 $(SRC)\termchar.h \ 486 $(SRC)\termchar.h \
461 $(SRC)\termopts.h \ 487 $(SRC)\termopts.h \
462 $(SRC)\termhooks.h \ 488 $(SRC)\termhooks.h \
463 $(SRC)\cm.h \ 489 $(SRC)\cm.h \
464 $(SRC)\buffer.h \ 490 $(SRC)\buffer.h \
467 $(SRC)\commands.h \ 493 $(SRC)\commands.h \
468 $(SRC)\disptab.h \ 494 $(SRC)\disptab.h \
469 $(SRC)\indent.h \ 495 $(SRC)\indent.h \
470 $(SRC)\dispextern.h \ 496 $(SRC)\dispextern.h \
471 $(SRC)\intervals.h \ 497 $(SRC)\intervals.h \
498 $(SRC)\composite.h \
472 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ 499 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
473 $(EMACS_ROOT)\nt\inc\sys\file.h \ 500 $(EMACS_ROOT)\nt\inc\sys\file.h \
474 $(SRC)\systty.h \ 501 $(SRC)\systty.h \
475 $(SRC)\w32term.h \ 502 $(SRC)\w32term.h \
476 $(SRC)\w32gui.h \
477 $(SRC)\xterm.h \ 503 $(SRC)\xterm.h \
478 $(SRC)\vmstime.h \ 504 $(SRC)\vmstime.h \
479 $(SRC)\systime.h \ 505 $(SRC)\systime.h
480 $(SRC)\composite.h
481 506
482 $(BLD)\doc.obj : \ 507 $(BLD)\doc.obj : \
483 $(SRC)\doc.c \ 508 $(SRC)\doc.c \
484 $(EMACS_ROOT)\src\s\ms-w32.h \ 509 $(EMACS_ROOT)\src\s\ms-w32.h \
485 $(EMACS_ROOT)\src\m\intel386.h \ 510 $(EMACS_ROOT)\src\m\intel386.h \
486 $(EMACS_ROOT)\src\config.h \ 511 $(EMACS_ROOT)\src\config.h \
487 $(EMACS_ROOT)\nt\inc\sys\file.h \ 512 $(EMACS_ROOT)\nt\inc\sys\file.h \
488 $(SRC)\lisp.h \
489 $(SRC)\buffer.h \ 513 $(SRC)\buffer.h \
490 $(SRC)\keyboard.h 514 $(SRC)\keyboard.h
491 515
492 $(BLD)\doprnt.obj : \ 516 $(BLD)\doprnt.obj : \
493 $(SRC)\doprnt.c \ 517 $(SRC)\doprnt.c \
494 $(EMACS_ROOT)\src\s\ms-w32.h \ 518 $(EMACS_ROOT)\src\s\ms-w32.h \
495 $(EMACS_ROOT)\src\m\intel386.h \ 519 $(EMACS_ROOT)\src\m\intel386.h \
496 $(EMACS_ROOT)\src\config.h 520 $(EMACS_ROOT)\src\config.h
521
522 $(BLD)\dosfns.obj : \
523 $(SRC)\dosfns.c \
524 $(EMACS_ROOT)\src\s\ms-w32.h \
525 $(EMACS_ROOT)\src\m\intel386.h \
526 $(EMACS_ROOT)\src\config.h \
527 $(SRC)\buffer.h \
528 $(SRC)\termchar.h \
529 $(SRC)\termhooks.h \
530 $(SRC)\frame.h \
531 $(SRC)\dosfns.h \
532 $(SRC)\msdos.h
497 533
498 $(BLD)\editfns.obj : \ 534 $(BLD)\editfns.obj : \
499 $(SRC)\editfns.c \ 535 $(SRC)\editfns.c \
500 $(EMACS_ROOT)\src\s\ms-w32.h \ 536 $(EMACS_ROOT)\src\s\ms-w32.h \
501 $(EMACS_ROOT)\src\m\intel386.h \ 537 $(EMACS_ROOT)\src\m\intel386.h \
502 $(EMACS_ROOT)\src\config.h \ 538 $(EMACS_ROOT)\src\config.h \
503 $(SRC)\uaf.h \ 539 $(SRC)\uaf.h \
504 $(SRC)\vms-pwd.h \ 540 $(SRC)\vms-pwd.h \
505 $(EMACS_ROOT)\nt\inc\pwd.h \ 541 $(EMACS_ROOT)\nt\inc\pwd.h \
506 $(SRC)\lisp.h \ 542 $(SRC)\dispextern.h \
507 $(SRC)\dispextern.h \
508 $(SRC)\w32gui.h \
509 $(SRC)\intervals.h \ 543 $(SRC)\intervals.h \
510 $(SRC)\composite.h \ 544 $(SRC)\composite.h \
511 $(SRC)\buffer.h \ 545 $(SRC)\buffer.h \
512 $(SRC)\window.h \ 546 $(SRC)\window.h \
513 $(SRC)\vmstime.h \ 547 $(SRC)\vmstime.h \
516 $(BLD)\emacs.obj : \ 550 $(BLD)\emacs.obj : \
517 $(SRC)\emacs.c \ 551 $(SRC)\emacs.c \
518 $(EMACS_ROOT)\src\s\ms-w32.h \ 552 $(EMACS_ROOT)\src\s\ms-w32.h \
519 $(EMACS_ROOT)\src\m\intel386.h \ 553 $(EMACS_ROOT)\src\m\intel386.h \
520 $(EMACS_ROOT)\src\config.h \ 554 $(EMACS_ROOT)\src\config.h \
521 $(SRC)\lisp.h \ 555 $(SRC)\commands.h \
522 $(SRC)\commands.h \ 556 $(SRC)\dispextern.h \
523 $(SRC)\dispextern.h \
524 $(SRC)\w32gui.h \
525 $(SRC)\intervals.h \ 557 $(SRC)\intervals.h \
526 $(SRC)\composite.h \ 558 $(SRC)\composite.h \
527 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ 559 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
528 $(EMACS_ROOT)\nt\inc\sys\file.h \ 560 $(EMACS_ROOT)\nt\inc\sys\file.h \
529 $(SRC)\systty.h \ 561 $(SRC)\systty.h \
533 $(BLD)\eval.obj : \ 565 $(BLD)\eval.obj : \
534 $(SRC)\eval.c \ 566 $(SRC)\eval.c \
535 $(EMACS_ROOT)\src\s\ms-w32.h \ 567 $(EMACS_ROOT)\src\s\ms-w32.h \
536 $(EMACS_ROOT)\src\m\intel386.h \ 568 $(EMACS_ROOT)\src\m\intel386.h \
537 $(EMACS_ROOT)\src\config.h \ 569 $(EMACS_ROOT)\src\config.h \
538 $(SRC)\lisp.h \
539 $(SRC)\blockinput.h \ 570 $(SRC)\blockinput.h \
540 $(SRC)\commands.h \ 571 $(SRC)\commands.h \
541 $(SRC)\keyboard.h 572 $(SRC)\keyboard.h
542 573
543 $(BLD)\fileio.obj : \ 574 $(BLD)\fileio.obj : \
549 $(SRC)\vms-pwd.h \ 580 $(SRC)\vms-pwd.h \
550 $(EMACS_ROOT)\nt\inc\pwd.h \ 581 $(EMACS_ROOT)\nt\inc\pwd.h \
551 $(SRC)\msdos.h \ 582 $(SRC)\msdos.h \
552 $(EMACS_ROOT)\nt\inc\sys\param.h \ 583 $(EMACS_ROOT)\nt\inc\sys\param.h \
553 $(SRC)\vmsdir.h \ 584 $(SRC)\vmsdir.h \
554 $(SRC)\lisp.h \ 585 $(SRC)\dispextern.h \
555 $(SRC)\dispextern.h \
556 $(SRC)\w32gui.h \
557 $(SRC)\intervals.h \ 586 $(SRC)\intervals.h \
558 $(SRC)\composite.h \ 587 $(SRC)\composite.h \
559 $(SRC)\buffer.h \ 588 $(SRC)\buffer.h \
560 $(SRC)\window.h \ 589 $(SRC)\window.h \
561 $(EMACS_ROOT)\nt\inc\sys\file.h \ 590 $(EMACS_ROOT)\nt\inc\sys\file.h \
569 $(EMACS_ROOT)\src\config.h \ 598 $(EMACS_ROOT)\src\config.h \
570 $(SRC)\uaf.h \ 599 $(SRC)\uaf.h \
571 $(SRC)\vms-pwd.h \ 600 $(SRC)\vms-pwd.h \
572 $(EMACS_ROOT)\nt\inc\pwd.h \ 601 $(EMACS_ROOT)\nt\inc\pwd.h \
573 $(EMACS_ROOT)\nt\inc\sys\file.h \ 602 $(EMACS_ROOT)\nt\inc\sys\file.h \
574 $(SRC)\lisp.h \
575 $(EMACS_ROOT)\src\epaths.h \ 603 $(EMACS_ROOT)\src\epaths.h \
576 $(SRC)\buffer.h \ 604 $(SRC)\buffer.h \
577 $(SRC)\vmsdir.h \ 605 $(SRC)\vmsdir.h \
578 $(SRC)\ndir.h 606 $(SRC)\ndir.h
579 607
595 $(BLD)\floatfns.obj : \ 623 $(BLD)\floatfns.obj : \
596 $(SRC)\floatfns.c \ 624 $(SRC)\floatfns.c \
597 $(EMACS_ROOT)\src\s\ms-w32.h \ 625 $(EMACS_ROOT)\src\s\ms-w32.h \
598 $(EMACS_ROOT)\src\m\intel386.h \ 626 $(EMACS_ROOT)\src\m\intel386.h \
599 $(EMACS_ROOT)\src\config.h \ 627 $(EMACS_ROOT)\src\config.h \
600 $(SRC)\lisp.h \
601 $(SRC)\syssignal.h 628 $(SRC)\syssignal.h
602 629
603 $(BLD)\fns.obj : \ 630 $(BLD)\fns.obj : \
604 $(SRC)\fns.c \ 631 $(SRC)\fns.c \
605 $(EMACS_ROOT)\src\s\ms-w32.h \ 632 $(EMACS_ROOT)\src\s\ms-w32.h \
606 $(EMACS_ROOT)\src\m\intel386.h \ 633 $(EMACS_ROOT)\src\m\intel386.h \
607 $(EMACS_ROOT)\src\config.h \ 634 $(EMACS_ROOT)\src\config.h \
608 $(SRC)\lisp.h \
609 $(SRC)\commands.h \ 635 $(SRC)\commands.h \
610 $(SRC)\buffer.h \ 636 $(SRC)\buffer.h \
611 $(SRC)\keyboard.h \ 637 $(SRC)\keyboard.h \
612 $(SRC)\dispextern.h \ 638 $(SRC)\dispextern.h \
613 $(SRC)\w32gui.h \
614 $(SRC)\intervals.h \ 639 $(SRC)\intervals.h \
615 $(SRC)\composite.h 640 $(SRC)\composite.h
616 641
617 $(BLD)\frame.obj : \ 642 $(BLD)\frame.obj : \
618 $(SRC)\frame.c \ 643 $(SRC)\frame.c \
619 $(EMACS_ROOT)\src\s\ms-w32.h \ 644 $(EMACS_ROOT)\src\s\ms-w32.h \
620 $(EMACS_ROOT)\src\m\intel386.h \ 645 $(EMACS_ROOT)\src\m\intel386.h \
621 $(EMACS_ROOT)\src\config.h \ 646 $(EMACS_ROOT)\src\config.h \
622 $(SRC)\lisp.h \
623 $(SRC)\frame.h \ 647 $(SRC)\frame.h \
624 $(SRC)\termhooks.h \ 648 $(SRC)\termhooks.h \
625 $(SRC)\window.h \ 649 $(SRC)\window.h \
626 $(SRC)\buffer.h \ 650 $(SRC)\buffer.h \
627 $(SRC)\commands.h \ 651 $(SRC)\commands.h \
657 $(BLD)\indent.obj : \ 681 $(BLD)\indent.obj : \
658 $(SRC)\indent.c \ 682 $(SRC)\indent.c \
659 $(EMACS_ROOT)\src\s\ms-w32.h \ 683 $(EMACS_ROOT)\src\s\ms-w32.h \
660 $(EMACS_ROOT)\src\m\intel386.h \ 684 $(EMACS_ROOT)\src\m\intel386.h \
661 $(EMACS_ROOT)\src\config.h \ 685 $(EMACS_ROOT)\src\config.h \
662 $(SRC)\lisp.h \
663 $(SRC)\buffer.h \ 686 $(SRC)\buffer.h \
664 $(SRC)\indent.h \ 687 $(SRC)\indent.h \
665 $(SRC)\frame.h \ 688 $(SRC)\frame.h \
666 $(SRC)\window.h \ 689 $(SRC)\window.h \
667 $(SRC)\termchar.h \ 690 $(SRC)\termchar.h \
668 $(SRC)\termopts.h \ 691 $(SRC)\termopts.h \
669 $(SRC)\disptab.h \ 692 $(SRC)\disptab.h \
670 $(SRC)\dispextern.h \ 693 $(SRC)\dispextern.h \
671 $(SRC)\w32gui.h \
672 $(SRC)\intervals.h \ 694 $(SRC)\intervals.h \
673 $(SRC)\region-cache.h \ 695 $(SRC)\region-cache.h \
674 $(SRC)\composite.h 696 $(SRC)\composite.h
675 697
676 $(BLD)\insdel.obj : \ 698 $(BLD)\insdel.obj : \
677 $(SRC)\insdel.c \ 699 $(SRC)\insdel.c \
678 $(EMACS_ROOT)\src\s\ms-w32.h \ 700 $(EMACS_ROOT)\src\s\ms-w32.h \
679 $(EMACS_ROOT)\src\m\intel386.h \ 701 $(EMACS_ROOT)\src\m\intel386.h \
680 $(EMACS_ROOT)\src\config.h \ 702 $(EMACS_ROOT)\src\config.h \
681 $(SRC)\lisp.h \ 703 $(SRC)\dispextern.h \
682 $(SRC)\dispextern.h \
683 $(SRC)\w32gui.h \
684 $(SRC)\intervals.h \ 704 $(SRC)\intervals.h \
685 $(SRC)\composite.h \ 705 $(SRC)\composite.h \
686 $(SRC)\buffer.h \ 706 $(SRC)\buffer.h \
687 $(SRC)\window.h \ 707 $(SRC)\window.h \
688 $(SRC)\blockinput.h 708 $(SRC)\blockinput.h
690 $(BLD)\intervals.obj : \ 710 $(BLD)\intervals.obj : \
691 $(SRC)\intervals.c \ 711 $(SRC)\intervals.c \
692 $(EMACS_ROOT)\src\s\ms-w32.h \ 712 $(EMACS_ROOT)\src\s\ms-w32.h \
693 $(EMACS_ROOT)\src\m\intel386.h \ 713 $(EMACS_ROOT)\src\m\intel386.h \
694 $(EMACS_ROOT)\src\config.h \ 714 $(EMACS_ROOT)\src\config.h \
695 $(SRC)\lisp.h \ 715 $(SRC)\dispextern.h \
696 $(SRC)\dispextern.h \ 716 $(SRC)\intervals.h \
697 $(SRC)\w32gui.h \ 717 $(SRC)\composite.h \
698 $(SRC)\intervals.h \ 718 $(SRC)\keyboard.h \
699 $(SRC)\buffer.h \ 719 $(SRC)\buffer.h \
700 $(SRC)\puresize.h 720 $(SRC)\puresize.h
701 $(CC) $(CFLAGS) -Fo$@ intervals.c
702 721
703 $(BLD)\keyboard.obj : \ 722 $(BLD)\keyboard.obj : \
704 $(SRC)\keyboard.c \ 723 $(SRC)\keyboard.c \
705 $(EMACS_ROOT)\src\s\ms-w32.h \ 724 $(EMACS_ROOT)\src\s\ms-w32.h \
706 $(EMACS_ROOT)\src\m\intel386.h \ 725 $(EMACS_ROOT)\src\m\intel386.h \
707 $(EMACS_ROOT)\src\config.h \ 726 $(EMACS_ROOT)\src\config.h \
708 $(SRC)\termchar.h \ 727 $(SRC)\termchar.h \
709 $(SRC)\termopts.h \ 728 $(SRC)\termopts.h \
710 $(SRC)\lisp.h \
711 $(SRC)\termhooks.h \ 729 $(SRC)\termhooks.h \
712 $(SRC)\macros.h \ 730 $(SRC)\macros.h \
713 $(SRC)\frame.h \ 731 $(SRC)\frame.h \
714 $(SRC)\window.h \ 732 $(SRC)\window.h \
715 $(SRC)\commands.h \ 733 $(SRC)\commands.h \
724 $(SRC)\syssignal.h \ 742 $(SRC)\syssignal.h \
725 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ 743 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
726 $(EMACS_ROOT)\nt\inc\sys\file.h \ 744 $(EMACS_ROOT)\nt\inc\sys\file.h \
727 $(SRC)\systty.h \ 745 $(SRC)\systty.h \
728 $(SRC)\w32term.h \ 746 $(SRC)\w32term.h \
729 $(SRC)\w32gui.h \
730 $(SRC)\xterm.h \ 747 $(SRC)\xterm.h \
731 $(SRC)\vmstime.h \ 748 $(SRC)\vmstime.h \
732 $(SRC)\systime.h \ 749 $(SRC)\systime.h \
733 $(SRC)\atimer.h 750 $(SRC)\atimer.h
734 751
735 $(BLD)\keymap.obj : \ 752 $(BLD)\keymap.obj : \
736 $(SRC)\keymap.c \ 753 $(SRC)\keymap.c \
737 $(EMACS_ROOT)\src\s\ms-w32.h \ 754 $(EMACS_ROOT)\src\s\ms-w32.h \
738 $(EMACS_ROOT)\src\m\intel386.h \ 755 $(EMACS_ROOT)\src\m\intel386.h \
739 $(EMACS_ROOT)\src\config.h \ 756 $(EMACS_ROOT)\src\config.h \
740 $(SRC)\lisp.h \
741 $(SRC)\commands.h \ 757 $(SRC)\commands.h \
742 $(SRC)\buffer.h \ 758 $(SRC)\buffer.h \
743 $(SRC)\keyboard.h \ 759 $(SRC)\keyboard.h \
744 $(SRC)\termhooks.h \ 760 $(SRC)\termhooks.h \
745 $(SRC)\blockinput.h 761 $(SRC)\blockinput.h
754 $(SRC)\lread.c \ 770 $(SRC)\lread.c \
755 $(EMACS_ROOT)\src\s\ms-w32.h \ 771 $(EMACS_ROOT)\src\s\ms-w32.h \
756 $(EMACS_ROOT)\src\m\intel386.h \ 772 $(EMACS_ROOT)\src\m\intel386.h \
757 $(EMACS_ROOT)\src\config.h \ 773 $(EMACS_ROOT)\src\config.h \
758 $(EMACS_ROOT)\nt\inc\sys\file.h \ 774 $(EMACS_ROOT)\nt\inc\sys\file.h \
759 $(SRC)\lisp.h \
760 $(SRC)\buffer.h \ 775 $(SRC)\buffer.h \
761 $(EMACS_ROOT)\src\epaths.h \ 776 $(EMACS_ROOT)\src\epaths.h \
762 $(SRC)\commands.h \ 777 $(SRC)\commands.h \
763 $(SRC)\keyboard.h \ 778 $(SRC)\keyboard.h \
764 $(SRC)\termhooks.h \ 779 $(SRC)\termhooks.h \
767 $(BLD)\macros.obj : \ 782 $(BLD)\macros.obj : \
768 $(SRC)\macros.c \ 783 $(SRC)\macros.c \
769 $(EMACS_ROOT)\src\s\ms-w32.h \ 784 $(EMACS_ROOT)\src\s\ms-w32.h \
770 $(EMACS_ROOT)\src\m\intel386.h \ 785 $(EMACS_ROOT)\src\m\intel386.h \
771 $(EMACS_ROOT)\src\config.h \ 786 $(EMACS_ROOT)\src\config.h \
772 $(SRC)\lisp.h \
773 $(SRC)\macros.h \ 787 $(SRC)\macros.h \
774 $(SRC)\commands.h \ 788 $(SRC)\commands.h \
775 $(SRC)\buffer.h \ 789 $(SRC)\buffer.h \
776 $(SRC)\window.h 790 $(SRC)\window.h
777 791
778 $(BLD)\marker.obj : \ 792 $(BLD)\marker.obj : \
779 $(SRC)\marker.c \ 793 $(SRC)\marker.c \
780 $(EMACS_ROOT)\src\s\ms-w32.h \ 794 $(EMACS_ROOT)\src\s\ms-w32.h \
781 $(EMACS_ROOT)\src\m\intel386.h \ 795 $(EMACS_ROOT)\src\m\intel386.h \
782 $(EMACS_ROOT)\src\config.h \ 796 $(EMACS_ROOT)\src\config.h \
783 $(SRC)\lisp.h \
784 $(SRC)\buffer.h 797 $(SRC)\buffer.h
785 798
786 $(BLD)\minibuf.obj : \ 799 $(BLD)\minibuf.obj : \
787 $(SRC)\minibuf.c \ 800 $(SRC)\minibuf.c \
788 $(EMACS_ROOT)\src\s\ms-w32.h \ 801 $(EMACS_ROOT)\src\s\ms-w32.h \
789 $(EMACS_ROOT)\src\m\intel386.h \ 802 $(EMACS_ROOT)\src\m\intel386.h \
790 $(EMACS_ROOT)\src\config.h \ 803 $(EMACS_ROOT)\src\config.h \
791 $(SRC)\lisp.h \ 804 $(SRC)\commands.h \
792 $(SRC)\commands.h \ 805 $(SRC)\buffer.h \
793 $(SRC)\buffer.h \ 806 $(SRC)\dispextern.h \
794 $(SRC)\dispextern.h \
795 $(SRC)\w32gui.h \
796 $(SRC)\frame.h \ 807 $(SRC)\frame.h \
797 $(SRC)\window.h \ 808 $(SRC)\window.h \
798 $(SRC)\syntax.h 809 $(SRC)\syntax.h
799 810
800 $(BLD)\mocklisp.obj : \ 811 $(BLD)\mocklisp.obj : \
801 $(SRC)\mocklisp.c \ 812 $(SRC)\mocklisp.c \
802 $(EMACS_ROOT)\src\s\ms-w32.h \ 813 $(EMACS_ROOT)\src\s\ms-w32.h \
803 $(EMACS_ROOT)\src\m\intel386.h \ 814 $(EMACS_ROOT)\src\m\intel386.h \
804 $(EMACS_ROOT)\src\config.h \ 815 $(EMACS_ROOT)\src\config.h \
805 $(SRC)\lisp.h \
806 $(SRC)\buffer.h 816 $(SRC)\buffer.h
807 817
808 $(BLD)\w32.obj : \ 818 $(BLD)\w32.obj : \
809 $(SRC)\w32.c \ 819 $(SRC)\w32.c \
810 $(SRC)\w32.h \ 820 $(SRC)\w32.h \
811 $(SRC)\s\ms-w32.h \ 821 $(SRC)\s\ms-w32.h \
812 $(SRC)\m\intel386.h \ 822 $(SRC)\m\intel386.h \
813 $(SRC)\config.h \ 823 $(SRC)\config.h \
814 $(SRC)\lisp.h \
815 $(EMACS_ROOT)\nt\inc\pwd.h \ 824 $(EMACS_ROOT)\nt\inc\pwd.h \
816 $(SRC)\w32heap.h 825 $(SRC)\w32heap.h
817 826
818 $(BLD)\w32heap.obj : \ 827 $(BLD)\w32heap.obj : \
819 $(SRC)\w32heap.c \ 828 $(SRC)\w32heap.c \
825 $(BLD)\w32inevt.obj : \ 834 $(BLD)\w32inevt.obj : \
826 $(SRC)\w32inevt.c \ 835 $(SRC)\w32inevt.c \
827 $(SRC)\s\ms-w32.h \ 836 $(SRC)\s\ms-w32.h \
828 $(SRC)\m\intel386.h \ 837 $(SRC)\m\intel386.h \
829 $(SRC)\config.h \ 838 $(SRC)\config.h \
830 $(SRC)\lisp.h \
831 $(SRC)\frame.h \ 839 $(SRC)\frame.h \
832 $(SRC)\blockinput.h \ 840 $(SRC)\blockinput.h \
833 $(SRC)\termhooks.h \ 841 $(SRC)\termhooks.h \
834 $(SRC)\w32heap.h \ 842 $(SRC)\w32heap.h \
835 $(SRC)\w32gui.h \
836 $(SRC)\w32term.h 843 $(SRC)\w32term.h
837 844
838 $(BLD)\w32proc.obj : \ 845 $(BLD)\w32proc.obj : \
839 $(SRC)\w32proc.c \ 846 $(SRC)\w32proc.c \
840 $(SRC)\s\ms-w32.h \ 847 $(SRC)\s\ms-w32.h \
841 $(SRC)\m\intel386.h \ 848 $(SRC)\m\intel386.h \
842 $(SRC)\config.h \ 849 $(SRC)\config.h \
843 $(SRC)\lisp.h \
844 $(SRC)\w32.h \ 850 $(SRC)\w32.h \
845 $(SRC)\w32heap.h \ 851 $(SRC)\w32heap.h \
846 $(SRC)\vmstime.h \ 852 $(SRC)\vmstime.h \
847 $(SRC)\systime.h 853 $(SRC)\systime.h
848 854
849 $(BLD)\w32console.obj : \ 855 $(BLD)\w32console.obj : \
850 $(SRC)\w32console.c \ 856 $(SRC)\w32console.c \
851 $(SRC)\s\ms-w32.h \ 857 $(SRC)\s\ms-w32.h \
852 $(SRC)\m\intel386.h \ 858 $(SRC)\m\intel386.h \
853 $(SRC)\config.h \ 859 $(SRC)\config.h \
854 $(SRC)\lisp.h \
855 $(SRC)\frame.h \ 860 $(SRC)\frame.h \
856 $(SRC)\disptab.h \ 861 $(SRC)\disptab.h \
857 $(SRC)\termhooks.h \ 862 $(SRC)\termhooks.h \
858 $(SRC)\w32inevt.h 863 $(SRC)\w32inevt.h
859 864
863 $(BLD)\print.obj : \ 868 $(BLD)\print.obj : \
864 $(SRC)\print.c \ 869 $(SRC)\print.c \
865 $(EMACS_ROOT)\src\s\ms-w32.h \ 870 $(EMACS_ROOT)\src\s\ms-w32.h \
866 $(EMACS_ROOT)\src\m\intel386.h \ 871 $(EMACS_ROOT)\src\m\intel386.h \
867 $(EMACS_ROOT)\src\config.h \ 872 $(EMACS_ROOT)\src\config.h \
868 $(SRC)\lisp.h \
869 $(SRC)\buffer.h \ 873 $(SRC)\buffer.h \
870 $(SRC)\frame.h \ 874 $(SRC)\frame.h \
871 $(SRC)\window.h \ 875 $(SRC)\window.h \
872 $(SRC)\process.h \ 876 $(SRC)\process.h \
873 $(SRC)\termchar.h \ 877 $(SRC)\termchar.h \
874 $(SRC)\dispextern.h \ 878 $(SRC)\dispextern.h \
875 $(SRC)\w32gui.h \
876 $(SRC)\intervals.h \ 879 $(SRC)\intervals.h \
877 $(SRC)\composite.h 880 $(SRC)\composite.h
878 881
879 $(BLD)\process.obj : \ 882 $(BLD)\process.obj : \
880 $(SRC)\process.c \ 883 $(SRC)\process.c \
891 $(SRC)\commands.h \ 894 $(SRC)\commands.h \
892 $(SRC)\frame.h \ 895 $(SRC)\frame.h \
893 $(SRC)\syssignal.h \ 896 $(SRC)\syssignal.h \
894 $(SRC)\vmsproc.h \ 897 $(SRC)\vmsproc.h \
895 $(SRC)\syswait.h \ 898 $(SRC)\syswait.h \
896 $(SRC)\lisp.h \
897 $(SRC)\vmstime.h \ 899 $(SRC)\vmstime.h \
898 $(SRC)\systime.h \ 900 $(SRC)\systime.h \
899 $(SRC)\termopts.h \ 901 $(SRC)\termopts.h \
900 $(SRC)\composite.h \ 902 $(SRC)\composite.h \
901 $(SRC)\atimer.h 903 $(SRC)\atimer.h
903 $(BLD)\ralloc.obj : \ 905 $(BLD)\ralloc.obj : \
904 $(SRC)\ralloc.c \ 906 $(SRC)\ralloc.c \
905 $(EMACS_ROOT)\src\s\ms-w32.h \ 907 $(EMACS_ROOT)\src\s\ms-w32.h \
906 $(EMACS_ROOT)\src\m\intel386.h \ 908 $(EMACS_ROOT)\src\m\intel386.h \
907 $(EMACS_ROOT)\src\config.h \ 909 $(EMACS_ROOT)\src\config.h \
908 $(SRC)\lisp.h \
909 $(SRC)\s\ms-w32.h \ 910 $(SRC)\s\ms-w32.h \
910 $(SRC)\m\intel386.h \ 911 $(SRC)\m\intel386.h \
911 $(SRC)\config.h \ 912 $(SRC)\config.h \
912 $(EMACS_ROOT)\nt\inc\sys\param.h \ 913 $(EMACS_ROOT)\nt\inc\sys\param.h \
913 $(SRC)\getpagesize.h 914 $(SRC)\getpagesize.h
918 $(EMACS_ROOT)\src\m\intel386.h \ 919 $(EMACS_ROOT)\src\m\intel386.h \
919 $(EMACS_ROOT)\src\config.h \ 920 $(EMACS_ROOT)\src\config.h \
920 $(SRC)\s\ms-w32.h \ 921 $(SRC)\s\ms-w32.h \
921 $(SRC)\m\intel386.h \ 922 $(SRC)\m\intel386.h \
922 $(SRC)\config.h \ 923 $(SRC)\config.h \
923 $(SRC)\lisp.h \
924 $(SRC)\buffer.h \ 924 $(SRC)\buffer.h \
925 $(SRC)\syntax.h \ 925 $(SRC)\syntax.h \
926 $(SRC)\regex.h 926 $(SRC)\regex.h
927 927
928 $(BLD)\region-cache.obj : \ 928 $(BLD)\region-cache.obj : \
929 $(SRC)\region-cache.c \ 929 $(SRC)\region-cache.c \
930 $(EMACS_ROOT)\src\s\ms-w32.h \ 930 $(EMACS_ROOT)\src\s\ms-w32.h \
931 $(EMACS_ROOT)\src\m\intel386.h \ 931 $(EMACS_ROOT)\src\m\intel386.h \
932 $(EMACS_ROOT)\src\config.h \ 932 $(EMACS_ROOT)\src\config.h \
933 $(SRC)\lisp.h \
934 $(SRC)\buffer.h \ 933 $(SRC)\buffer.h \
935 $(SRC)\region-cache.h 934 $(SRC)\region-cache.h
936 935
937 $(BLD)\scroll.obj : \ 936 $(BLD)\scroll.obj : \
938 $(SRC)\scroll.c \ 937 $(SRC)\scroll.c \
939 $(EMACS_ROOT)\src\s\ms-w32.h \ 938 $(EMACS_ROOT)\src\s\ms-w32.h \
940 $(EMACS_ROOT)\src\m\intel386.h \ 939 $(EMACS_ROOT)\src\m\intel386.h \
941 $(EMACS_ROOT)\src\config.h \ 940 $(EMACS_ROOT)\src\config.h \
942 $(SRC)\termchar.h \ 941 $(SRC)\termchar.h \
943 $(SRC)\lisp.h \ 942 $(SRC)\dispextern.h \
944 $(SRC)\dispextern.h \
945 $(SRC)\w32gui.h \
946 $(SRC)\frame.h 943 $(SRC)\frame.h
947 944
948 $(BLD)\search.obj : \ 945 $(BLD)\search.obj : \
949 $(SRC)\search.c \ 946 $(SRC)\search.c \
950 $(EMACS_ROOT)\src\s\ms-w32.h \ 947 $(EMACS_ROOT)\src\s\ms-w32.h \
951 $(EMACS_ROOT)\src\m\intel386.h \ 948 $(EMACS_ROOT)\src\m\intel386.h \
952 $(EMACS_ROOT)\src\config.h \ 949 $(EMACS_ROOT)\src\config.h \
953 $(SRC)\lisp.h \
954 $(SRC)\syntax.h \ 950 $(SRC)\syntax.h \
955 $(SRC)\buffer.h \ 951 $(SRC)\buffer.h \
956 $(SRC)\commands.h \ 952 $(SRC)\commands.h \
957 $(SRC)\blockinput.h \ 953 $(SRC)\blockinput.h \
958 $(SRC)\regex.h \ 954 $(SRC)\regex.h \
968 $(BLD)\sunfns.obj : \ 964 $(BLD)\sunfns.obj : \
969 $(SRC)\sunfns.c \ 965 $(SRC)\sunfns.c \
970 $(EMACS_ROOT)\src\s\ms-w32.h \ 966 $(EMACS_ROOT)\src\s\ms-w32.h \
971 $(EMACS_ROOT)\src\m\intel386.h \ 967 $(EMACS_ROOT)\src\m\intel386.h \
972 $(EMACS_ROOT)\src\config.h \ 968 $(EMACS_ROOT)\src\config.h \
973 $(SRC)\lisp.h \
974 $(SRC)\window.h \ 969 $(SRC)\window.h \
975 $(SRC)\buffer.h \ 970 $(SRC)\buffer.h \
976 $(SRC)\termhooks.h 971 $(SRC)\termhooks.h
977 972
978 $(BLD)\syntax.obj : \ 973 $(BLD)\syntax.obj : \
979 $(SRC)\syntax.c \ 974 $(SRC)\syntax.c \
980 $(EMACS_ROOT)\src\s\ms-w32.h \ 975 $(EMACS_ROOT)\src\s\ms-w32.h \
981 $(EMACS_ROOT)\src\m\intel386.h \ 976 $(EMACS_ROOT)\src\m\intel386.h \
982 $(EMACS_ROOT)\src\config.h \ 977 $(EMACS_ROOT)\src\config.h \
983 $(SRC)\lisp.h \
984 $(SRC)\commands.h \ 978 $(SRC)\commands.h \
985 $(SRC)\buffer.h \ 979 $(SRC)\buffer.h \
986 $(SRC)\syntax.h \ 980 $(SRC)\syntax.h \
987 $(SRC)\composite.h 981 $(SRC)\composite.h
988 982
989 $(BLD)\sysdep.obj : \ 983 $(BLD)\sysdep.obj : \
990 $(SRC)\sysdep.c \ 984 $(SRC)\sysdep.c \
991 $(EMACS_ROOT)\src\s\ms-w32.h \ 985 $(EMACS_ROOT)\src\s\ms-w32.h \
992 $(EMACS_ROOT)\src\m\intel386.h \ 986 $(EMACS_ROOT)\src\m\intel386.h \
993 $(EMACS_ROOT)\src\config.h \ 987 $(EMACS_ROOT)\src\config.h \
994 $(SRC)\lisp.h \
995 $(SRC)\blockinput.h \ 988 $(SRC)\blockinput.h \
996 $(SRC)\dosfns.h \ 989 $(SRC)\dosfns.h \
997 $(SRC)\msdos.h \ 990 $(SRC)\msdos.h \
998 $(EMACS_ROOT)\nt\inc\sys\param.h \ 991 $(EMACS_ROOT)\nt\inc\sys\param.h \
999 $(EMACS_ROOT)\nt\inc\sys\file.h \ 992 $(EMACS_ROOT)\nt\inc\sys\file.h \
1006 $(SRC)\window.h \ 999 $(SRC)\window.h \
1007 $(SRC)\termhooks.h \ 1000 $(SRC)\termhooks.h \
1008 $(SRC)\termchar.h \ 1001 $(SRC)\termchar.h \
1009 $(SRC)\termopts.h \ 1002 $(SRC)\termopts.h \
1010 $(SRC)\dispextern.h \ 1003 $(SRC)\dispextern.h \
1011 $(SRC)\w32gui.h \
1012 $(SRC)\process.h \ 1004 $(SRC)\process.h \
1013 $(SRC)\vmsdir.h \ 1005 $(SRC)\vmsdir.h \
1014 $(SRC)\ndir.h \ 1006 $(SRC)\ndir.h \
1015 $(SRC)\syssignal.h \ 1007 $(SRC)\syssignal.h \
1016 $(SRC)\vmstime.h \ 1008 $(SRC)\vmstime.h \
1026 $(EMACS_ROOT)\src\m\intel386.h \ 1018 $(EMACS_ROOT)\src\m\intel386.h \
1027 $(EMACS_ROOT)\src\config.h \ 1019 $(EMACS_ROOT)\src\config.h \
1028 $(SRC)\termchar.h \ 1020 $(SRC)\termchar.h \
1029 $(SRC)\termopts.h \ 1021 $(SRC)\termopts.h \
1030 $(SRC)\cm.h \ 1022 $(SRC)\cm.h \
1031 $(SRC)\lisp.h \
1032 $(SRC)\frame.h \ 1023 $(SRC)\frame.h \
1033 $(SRC)\disptab.h \ 1024 $(SRC)\disptab.h \
1034 $(SRC)\termhooks.h \ 1025 $(SRC)\termhooks.h \
1035 $(SRC)\keyboard.h 1026 $(SRC)\keyboard.h
1036 1027
1047 $(BLD)\textprop.obj : \ 1038 $(BLD)\textprop.obj : \
1048 $(SRC)\textprop.c \ 1039 $(SRC)\textprop.c \
1049 $(EMACS_ROOT)\src\s\ms-w32.h \ 1040 $(EMACS_ROOT)\src\s\ms-w32.h \
1050 $(EMACS_ROOT)\src\m\intel386.h \ 1041 $(EMACS_ROOT)\src\m\intel386.h \
1051 $(EMACS_ROOT)\src\config.h \ 1042 $(EMACS_ROOT)\src\config.h \
1052 $(SRC)\lisp.h \ 1043 $(SRC)\dispextern.h \
1053 $(SRC)\dispextern.h \
1054 $(SRC)\w32gui.h \
1055 $(SRC)\intervals.h \ 1044 $(SRC)\intervals.h \
1056 $(SRC)\composite.h \ 1045 $(SRC)\composite.h \
1057 $(SRC)\buffer.h \ 1046 $(SRC)\buffer.h \
1058 $(SRC)\window.h 1047 $(SRC)\window.h
1059
1060 $(BLD)\intervals.obj : \
1061 $(SRC)\intervals.c \
1062 $(SRC)\buffer.h \
1063 $(SRC)\intervals.h \
1064 $(SRC)\composite.h \
1065 $(SRC)\keyboard.h \
1066 $(SRC)\puresize.h \
1067 $(EMACS_ROOT)\src\s\ms-w32.h \
1068 $(EMACS_ROOT)\src\m\intel386.h \
1069 $(EMACS_ROOT)\src\config.h
1070
1071 $(BLD)\composite.obj : \
1072 $(SRC)\composite.c \
1073 $(SRC)\buffer.h \
1074 $(SRC)\charset.h \
1075 $(SRC)\intervals.h \
1076 $(SRC)\composite.h \
1077 $(EMACS_ROOT)\src\s\ms-w32.h \
1078 $(EMACS_ROOT)\src\m\intel386.h \
1079 $(EMACS_ROOT)\src\config.h
1080 1048
1081 $(BLD)\tparam.obj : \ 1049 $(BLD)\tparam.obj : \
1082 $(SRC)\tparam.c \ 1050 $(SRC)\tparam.c \
1083 $(EMACS_ROOT)\src\s\ms-w32.h \ 1051 $(EMACS_ROOT)\src\s\ms-w32.h \
1084 $(EMACS_ROOT)\src\m\intel386.h \ 1052 $(EMACS_ROOT)\src\m\intel386.h \
1087 $(BLD)\undo.obj : \ 1055 $(BLD)\undo.obj : \
1088 $(SRC)\undo.c \ 1056 $(SRC)\undo.c \
1089 $(EMACS_ROOT)\src\s\ms-w32.h \ 1057 $(EMACS_ROOT)\src\s\ms-w32.h \
1090 $(EMACS_ROOT)\src\m\intel386.h \ 1058 $(EMACS_ROOT)\src\m\intel386.h \
1091 $(EMACS_ROOT)\src\config.h \ 1059 $(EMACS_ROOT)\src\config.h \
1092 $(SRC)\lisp.h \
1093 $(SRC)\buffer.h \ 1060 $(SRC)\buffer.h \
1094 $(SRC)\commands.h 1061 $(SRC)\commands.h
1095 1062
1096 $(BLD)\unexw32.obj : \ 1063 $(BLD)\unexw32.obj : \
1097 $(SRC)\unexw32.c \ 1064 $(SRC)\unexw32.c \
1110 $(BLD)\widget.obj : \ 1077 $(BLD)\widget.obj : \
1111 $(SRC)\widget.c \ 1078 $(SRC)\widget.c \
1112 $(EMACS_ROOT)\src\s\ms-w32.h \ 1079 $(EMACS_ROOT)\src\s\ms-w32.h \
1113 $(EMACS_ROOT)\src\m\intel386.h \ 1080 $(EMACS_ROOT)\src\m\intel386.h \
1114 $(EMACS_ROOT)\src\config.h \ 1081 $(EMACS_ROOT)\src\config.h \
1115 $(SRC)\lisp.h \
1116 $(SRC)\xterm.h \ 1082 $(SRC)\xterm.h \
1117 $(SRC)\frame.h \ 1083 $(SRC)\frame.h \
1118 $(SRC)\dispextern.h \ 1084 $(SRC)\dispextern.h \
1119 $(SRC)\w32gui.h \
1120 $(SRC)\widget.h \ 1085 $(SRC)\widget.h \
1121 $(SRC)\widgetprv.h 1086 $(SRC)\widgetprv.h
1122 1087
1123 $(BLD)\window.obj : \ 1088 $(BLD)\window.obj : \
1124 $(SRC)\window.c \ 1089 $(SRC)\window.c \
1125 $(EMACS_ROOT)\src\s\ms-w32.h \ 1090 $(EMACS_ROOT)\src\s\ms-w32.h \
1126 $(EMACS_ROOT)\src\m\intel386.h \ 1091 $(EMACS_ROOT)\src\m\intel386.h \
1127 $(EMACS_ROOT)\src\config.h \ 1092 $(EMACS_ROOT)\src\config.h \
1128 $(SRC)\lisp.h \
1129 $(SRC)\buffer.h \ 1093 $(SRC)\buffer.h \
1130 $(SRC)\frame.h \ 1094 $(SRC)\frame.h \
1131 $(SRC)\window.h \ 1095 $(SRC)\window.h \
1132 $(SRC)\commands.h \ 1096 $(SRC)\commands.h \
1133 $(SRC)\indent.h \ 1097 $(SRC)\indent.h \
1139 $(BLD)\xdisp.obj : \ 1103 $(BLD)\xdisp.obj : \
1140 $(SRC)\xdisp.c \ 1104 $(SRC)\xdisp.c \
1141 $(EMACS_ROOT)\src\s\ms-w32.h \ 1105 $(EMACS_ROOT)\src\s\ms-w32.h \
1142 $(EMACS_ROOT)\src\m\intel386.h \ 1106 $(EMACS_ROOT)\src\m\intel386.h \
1143 $(EMACS_ROOT)\src\config.h \ 1107 $(EMACS_ROOT)\src\config.h \
1144 $(SRC)\lisp.h \
1145 $(SRC)\frame.h \ 1108 $(SRC)\frame.h \
1146 $(SRC)\window.h \ 1109 $(SRC)\window.h \
1147 $(SRC)\termchar.h \ 1110 $(SRC)\termchar.h \
1148 $(SRC)\buffer.h \ 1111 $(SRC)\buffer.h \
1149 $(SRC)\indent.h \ 1112 $(SRC)\indent.h \
1150 $(SRC)\commands.h \ 1113 $(SRC)\commands.h \
1151 $(SRC)\macros.h \ 1114 $(SRC)\macros.h \
1152 $(SRC)\disptab.h \ 1115 $(SRC)\disptab.h \
1153 $(SRC)\termhooks.h \ 1116 $(SRC)\termhooks.h \
1154 $(SRC)\dispextern.h \ 1117 $(SRC)\dispextern.h \
1155 $(SRC)\w32gui.h \
1156 $(SRC)\intervals.h \ 1118 $(SRC)\intervals.h \
1157 $(SRC)\composite.h 1119 $(SRC)\composite.h
1158 1120
1159 $(BLD)\xfaces.obj: \ 1121 $(BLD)\xfaces.obj: \
1160 $(EMACS_ROOT)\src\s\ms-w32.h \ 1122 $(EMACS_ROOT)\src\s\ms-w32.h \
1161 $(EMACS_ROOT)\src\m\intel386.h \ 1123 $(EMACS_ROOT)\src\m\intel386.h \
1162 $(EMACS_ROOT)\src\config.h \ 1124 $(EMACS_ROOT)\src\config.h \
1163 $(SRC)\xfaces.c \ 1125 $(SRC)\xfaces.c \
1164 $(SRC)\lisp.h \
1165 $(SRC)\charset.h \ 1126 $(SRC)\charset.h \
1166 $(SRC)\fontset.h \ 1127 $(SRC)\fontset.h \
1167 $(SRC)\w32term.h \ 1128 $(SRC)\w32term.h \
1168 $(SRC)\w32gui.h \ 1129 $(SRC)\w32gui.h \
1169 $(SRC)\buffer.h \ 1130 $(SRC)\buffer.h \
1170 $(SRC)\dispextern.h \ 1131 $(SRC)\dispextern.h \
1171 $(SRC)\frame.h \ 1132 $(SRC)\frame.h \
1172 $(SRC)\blockinput.h \ 1133 $(SRC)\blockinput.h \
1173 $(SRC)\window.h \ 1134 $(SRC)\window.h \
1174 $(SRC)\keyboard.h \
1175 $(SRC)\intervals.h \ 1135 $(SRC)\intervals.h \
1176 $(SRC)\composite.h 1136 $(SRC)\composite.h
1177 1137
1178 $(BLD)\w32fns.obj: \ 1138 $(BLD)\w32fns.obj: \
1179 $(EMACS_ROOT)\src\s\ms-w32.h \ 1139 $(EMACS_ROOT)\src\s\ms-w32.h \
1180 $(EMACS_ROOT)\src\m\intel386.h \ 1140 $(EMACS_ROOT)\src\m\intel386.h \
1181 $(EMACS_ROOT)\src\config.h \ 1141 $(EMACS_ROOT)\src\config.h \
1182 $(SRC)\w32fns.c \ 1142 $(SRC)\w32fns.c \
1183 $(SRC)\x-list-font.c \ 1143 $(SRC)\x-list-font.c \
1184 $(SRC)\lisp.h \
1185 $(SRC)\w32term.h \ 1144 $(SRC)\w32term.h \
1186 $(SRC)\w32gui.h \ 1145 $(SRC)\w32gui.h \
1187 $(SRC)\frame.h \ 1146 $(SRC)\frame.h \
1188 $(SRC)\window.h \ 1147 $(SRC)\window.h \
1189 $(SRC)\buffer.h \ 1148 $(SRC)\buffer.h \
1199 $(BLD)\w32menu.obj: \ 1158 $(BLD)\w32menu.obj: \
1200 $(EMACS_ROOT)\src\s\ms-w32.h \ 1159 $(EMACS_ROOT)\src\s\ms-w32.h \
1201 $(EMACS_ROOT)\src\m\intel386.h \ 1160 $(EMACS_ROOT)\src\m\intel386.h \
1202 $(EMACS_ROOT)\src\config.h \ 1161 $(EMACS_ROOT)\src\config.h \
1203 $(SRC)\w32menu.c \ 1162 $(SRC)\w32menu.c \
1204 $(SRC)\lisp.h \
1205 $(SRC)\termhooks.h \ 1163 $(SRC)\termhooks.h \
1206 $(SRC)\frame.h \ 1164 $(SRC)\frame.h \
1207 $(SRC)\window.h \ 1165 $(SRC)\window.h \
1208 $(SRC)\keyboard.h \ 1166 $(SRC)\keyboard.h \
1209 $(SRC)\blockinput.h \ 1167 $(SRC)\blockinput.h \
1214 $(BLD)\w32term.obj: \ 1172 $(BLD)\w32term.obj: \
1215 $(EMACS_ROOT)\src\s\ms-w32.h \ 1173 $(EMACS_ROOT)\src\s\ms-w32.h \
1216 $(EMACS_ROOT)\src\m\intel386.h \ 1174 $(EMACS_ROOT)\src\m\intel386.h \
1217 $(EMACS_ROOT)\src\config.h \ 1175 $(EMACS_ROOT)\src\config.h \
1218 $(SRC)\w32term.c \ 1176 $(SRC)\w32term.c \
1219 $(SRC)\lisp.h \
1220 $(SRC)\blockinput.h \ 1177 $(SRC)\blockinput.h \
1221 $(SRC)\w32heap.h \ 1178 $(SRC)\w32heap.h \
1222 $(SRC)\w32term.h \ 1179 $(SRC)\w32term.h \
1223 $(SRC)\w32gui.h \ 1180 $(SRC)\w32gui.h \
1224 $(SRC)\systty.h \ 1181 $(SRC)\systty.h \
1240 $(BLD)\w32select.obj: \ 1197 $(BLD)\w32select.obj: \
1241 $(EMACS_ROOT)\src\s\ms-w32.h \ 1198 $(EMACS_ROOT)\src\s\ms-w32.h \
1242 $(EMACS_ROOT)\src\m\intel386.h \ 1199 $(EMACS_ROOT)\src\m\intel386.h \
1243 $(EMACS_ROOT)\src\config.h \ 1200 $(EMACS_ROOT)\src\config.h \
1244 $(SRC)\w32select.c \ 1201 $(SRC)\w32select.c \
1245 $(SRC)\lisp.h \
1246 $(SRC)\w32term.h \ 1202 $(SRC)\w32term.h \
1247 $(SRC)\w32gui.h \ 1203 $(SRC)\w32gui.h \
1248 $(SRC)\dispextern.h \ 1204 $(SRC)\dispextern.h \
1249 $(SRC)\frame.h \ 1205 $(SRC)\frame.h \
1250 $(SRC)\blockinput.h 1206 $(SRC)\blockinput.h
1252 $(BLD)\w32reg.obj: \ 1208 $(BLD)\w32reg.obj: \
1253 $(EMACS_ROOT)\src\s\ms-w32.h \ 1209 $(EMACS_ROOT)\src\s\ms-w32.h \
1254 $(EMACS_ROOT)\src\m\intel386.h \ 1210 $(EMACS_ROOT)\src\m\intel386.h \
1255 $(EMACS_ROOT)\src\config.h \ 1211 $(EMACS_ROOT)\src\config.h \
1256 $(SRC)\w32reg.c \ 1212 $(SRC)\w32reg.c \
1257 $(SRC)\lisp.h \
1258 $(SRC)\w32term.h \ 1213 $(SRC)\w32term.h \
1259 $(SRC)\w32gui.h \ 1214 $(SRC)\w32gui.h \
1260 $(SRC)\blockinput.h 1215 $(SRC)\blockinput.h
1261 1216
1262 $(BLD)\w32xfns.obj: \ 1217 $(BLD)\w32xfns.obj: \
1268 $(BLD)\w32bdf.obj: \ 1223 $(BLD)\w32bdf.obj: \
1269 $(EMACS_ROOT)\src/s\ms-w32.h \ 1224 $(EMACS_ROOT)\src/s\ms-w32.h \
1270 $(EMACS_ROOT)\src/m\intel386.h \ 1225 $(EMACS_ROOT)\src/m\intel386.h \
1271 $(EMACS_ROOT)\src/config.h \ 1226 $(EMACS_ROOT)\src/config.h \
1272 $(SRC)\w32bdf.c \ 1227 $(SRC)\w32bdf.c \
1273 $(SRC)\lisp.h \
1274 $(SRC)\charset.h \ 1228 $(SRC)\charset.h \
1275 $(SRC)\frame.h \ 1229 $(SRC)\frame.h \
1276 $(SRC)\dispextern.h \ 1230 $(SRC)\dispextern.h \
1277 $(SRC)\fontset.h \ 1231 $(SRC)\fontset.h \
1278 $(SRC)\blockinput.h \ 1232 $(SRC)\blockinput.h \
1279 $(SRC)\w32gui.h \ 1233 $(SRC)\w32gui.h \
1280 $(SRC)\w32term.h \ 1234 $(SRC)\w32term.h \
1281 $(SRC)\w32bdf.h \ 1235 $(SRC)\w32bdf.h \
1282 $(SRC)\lisp.h \
1283 $(SRC)\w32term.h \
1284 $(SRC)\w32.h \ 1236 $(SRC)\w32.h \
1237 $(SRC)\frame.h \
1285 $(SRC)\blockinput.h 1238 $(SRC)\blockinput.h