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.

135 lines
3.1 KiB

  1. # MVDM\INC makefile
  2. #
  3. # Copyright (c) 1991, Microsoft Corporation
  4. #
  5. # History:
  6. # 14-May-1991 Jeff Parsons (jeffpar)
  7. # Created.
  8. # 08-Dec-1991 Sudeep Bharati (sudeepb)
  9. # Changed the h2inc usage for DOSSVC to include strucs
  10. # 12-FEB-92 mattfe added tdb16.h
  11. # 14-April-92 ChandanC added WOWSHELL.H
  12. # 12-May-1992 MikeTri added MultiMedia header
  13. #
  14. !IFDEF USEBUILD
  15. # If using BUILD.EXE, edit .\sources. if you want to add a new source
  16. # file to this component. This file merely indirects to the real make file
  17. # that is shared by all the components of NT OS/2.
  18. !INCLUDE $(NTMAKEENV)\makefile.def
  19. !ELSE
  20. !include $(NTMAKEENV)\makefile.plt
  21. ########## Path definition so we find 16 bit tools ##########
  22. # Also works around stupid bug in RC 3.1 that doesn't allow rcpp.err to be
  23. # in a directory that is greater than 128 chars down the path, even if
  24. # rc 3.1 is running as an OS/2 app.
  25. PATH = $(BASEDIR)\tools\tools16;$(PATH)
  26. .SUFFIXES:
  27. .SUFFIXES: .c .asm .h .inc .obj .lst .sys .exe .com .map .sym .def .lib
  28. .h.inc:
  29. h2inc -t -s mvdm.h -s wow.h $*.h -o $*.inc
  30. INC_FILES = mvdm.inc softpc.inc bop.inc vint.inc \
  31. wow.inc wownt32.inc wowkrn.inc wowusr.inc wowgdi.inc wowshell.inc \
  32. wowkbd.inc wowsnd.inc tdb16.inc dpmi.inc dossvc.inc \
  33. xmssvc.inc cmdsvc.inc rdrsvc.inc dbgsvc.inc \
  34. apistruc.inc enumapis.inc wowmmed.inc wowmmcb.inc vrdlctab.inc \
  35. wowwsock.inc wowth.inc vrdefld.inc wowcmdlg.inc wowcmpat.inc \
  36. doswow.inc curdir.inc
  37. !ifdef ALT_PROJECT
  38. INC_FILES = $(INC_FILES) wownls.inc wowwife.inc
  39. !endif
  40. all: $(INC_FILES)
  41. clean: cleanup all
  42. #
  43. # Do NOT do del *.inc here. There are include files checked into this
  44. # directory, and it's really annoying to have all of your changes vanish
  45. # on a clean build
  46. #
  47. cleanup:
  48. !-del $(INC_FILES) 2>nul
  49. mvdm.inc: mvdm.h
  50. softpc.inc: softpc.h
  51. bop.inc: bop.h
  52. vint.inc: vint.h
  53. wow.inc: wow.h mvdm.h bop.h
  54. wowcmdlg.inc: wowcmdlg.h wow.inc
  55. wowkrn.inc: wowkrn.h wow.inc
  56. wowusr.inc: wowusr.h wow.inc
  57. wowgdi.inc: wowgdi.h wow.inc
  58. wowshell.inc: wowshell.h wow.inc
  59. wowkbd.inc: wowkbd.h wow.inc
  60. wowsnd.inc: wowsnd.h wow.inc
  61. wowmmed.inc: wowmmed.h wowmmcb.inc wow.inc
  62. h2inc -t -s mvdm.h -s wow.h -s wowmmcb.h $*.h -o $*.inc
  63. wowwsock.inc: wowwsock.h wow.inc
  64. wowth.inc: wowth.h wow.inc
  65. !ifdef ALT_PROJECT
  66. wownls.inc: wownls.h wow.inc
  67. wowwife.inc: wowwife.h wow.inc
  68. !endif
  69. tdb16.inc: tdb16.h
  70. h2inc -s mvdm.h -s wow.h tdb16.h -o tdb16.inc
  71. dossvc.inc: dossvc.h bop.h
  72. h2inc -s mvdm.h -s wow.h dossvc.h -o dossvc.inc
  73. xmssvc.inc: xmssvc.h bop.h
  74. cmdsvc.inc: cmdsvc.h bop.h
  75. curdir.inc: curdir.h bop.h
  76. h2inc -s mvdm.h -s wow.h curdir.h -o curdir.inc
  77. dbgsvc.inc: dbgsvc.h bop.h
  78. dpmi.inc: dpmi.h bop.inc
  79. rdrsvc.inc: rdrsvc.h bop.h
  80. apistruc.inc: apistruc.h
  81. enumapis.inc: enumapis.h
  82. vrdlctab.inc: vrdlctab.h
  83. vrdefld.inc: vrdefld.h
  84. doswow.inc: doswow.h
  85. wownt32.inc: $(SDK_INC_PATH)\wownt32.h
  86. h2inc -t -s mvdm.h -s wow.h $(SDK_INC_PATH)\wownt32.h -o wownt32.inc
  87. !ENDIF