Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
2.4 KiB

  1. #;
  2. #; Microsoft Confidential
  3. #; Copyright (C) Microsoft Corporation 1988-1991
  4. #; All Rights Reserved.
  5. #;
  6. #
  7. # Make file for ANSI.SYS
  8. #
  9. # Modification History
  10. #
  11. # Sudeepb 26-Jul-1992 Ported for NT DOS Support
  12. #*********************** makefile for ansi.sys ****************************
  13. include ../../make.inc
  14. cinc =../../../../inc
  15. AINC =-I. -I$(cinc) -I../../../../inc
  16. target =$(DEST)\ansi.sys
  17. #
  18. ####################### Dependencies Begin Here ##########################
  19. #
  20. all: makedir $(target)
  21. binplace -o $(ALT_PROJECT_TARGET) $(target)
  22. include ..\..\cleanup.inc
  23. $(DEST)\ansi.obj: ansi.asm \
  24. makefile.sub \
  25. ansi.inc \
  26. $(inc)\vector.inc \
  27. $(inc)\mult.inc \
  28. $(inc)\struc.inc
  29. $(DEST)\ioctl.obj: ioctl.asm \
  30. makefile.sub \
  31. ansi.inc \
  32. $(inc)\struc.inc
  33. $(DEST)\ansiinit.obj: ansiinit.asm \
  34. makefile.sub \
  35. ansi.inc \
  36. ansivid.inc \
  37. $(inc)\struc.inc
  38. $(DEST)\parser.obj: $(DEST)\ansi.ctl \
  39. parser.asm \
  40. makefile.sub \
  41. ansi.inc \
  42. $(inc)\sysmsg.inc \
  43. $(inc)\version.inc \
  44. $(inc)\parse.asm \
  45. $(inc)\struc.inc \
  46. $(inc)\versiona.inc
  47. $(DEST)\ansi.exs: \
  48. $(DEST)\ansi.obj \
  49. $(DEST)\ioctl.obj \
  50. $(DEST)\ansiinit.obj \
  51. $(DEST)\parser.obj \
  52. makefile.sub
  53. @echo $(DEST)\ansi.obj + >>$(DEST)\tmp.lnk
  54. @echo $(DEST)\ioctl.obj + >>$(DEST)\tmp.lnk
  55. @echo $(DEST)\ansiinit.obj + >>$(DEST)\tmp.lnk
  56. @echo $(DEST)\parser.obj >>$(DEST)\tmp.lnk
  57. @echo $(DEST)\ansi.exs >>$(DEST)\tmp.lnk
  58. @echo $(DEST)\ansi.map >>$(DEST)\tmp.lnk
  59. @echo /M >>$(DEST)\tmp.lnk
  60. @echo ; >>$(DEST)\tmp.lnk
  61. link16 $(link_opts) @$(DEST)\tmp.lnk
  62. erase $(DEST)\tmp.lnk
  63. $(target): $(DEST)\ansi.exs