Source code of Windows XP (NT5)
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.

104 lines
2.3 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 ..\inc\mvdm.h -s ..\inc\wow.h $*.h -o $*.inc
  30. MEH2I = $(NTMAKEENV)\..\base\mvdm\tools\h2inc -fwc -s $(NTMAKEENV)\..\base\mvdm\tools\basedef.h $(*B).h -o $(*B).inc
  31. INC_FILES = vint.inc tdb16.inc vwin32.inc w32base.inc vtdapi.inc \
  32. heap.inc k16thk.inc k32share.inc ring0.inc tdbx.inc vmm.inc \
  33. apitrace.inc int2fapi.inc
  34. all: $(INC_FILES)
  35. clean: cleanup all
  36. #
  37. # Do NOT do del *.inc here. There are include files checked into this
  38. # directory, and it's really annoying to have all of your changes vanish
  39. # on a clean build
  40. #
  41. cleanup:
  42. !-del $(INC_FILES) 2>nul
  43. k16thk.inc: k16thk.h
  44. h2inc -f -t -s ..\inc\mvdm.h -s ..\inc\wow.h $*.h -o $*.inc
  45. k32share.inc: k32share.h
  46. h2inc -f -t -s ..\inc\mvdm.h -s ..\inc\wow.h $*.h -o $*.inc
  47. #object.inc: object.h
  48. # $(MEH2I)
  49. #syslevel.inc: syslevel.h
  50. # $(MEH2I)
  51. apitrace.inc: apitrace.h
  52. $(MEH2I)
  53. vmm.inc: vmm.h
  54. $(MEH2I)
  55. tdbx.inc: tdbx.h
  56. $(MEH2I)
  57. ring0.inc: ring0.h
  58. $(MEH2I)
  59. vwin32.inc: vwin32.h
  60. $(MEH2I)
  61. w32base.inc: w32base.h
  62. $(MEH2I)
  63. vtdapi.inc: vtdapi.h
  64. $(MEH2I)
  65. heap.inc: heap.h
  66. $(MEH2I)
  67. int2fapi.inc: int2fapi.h
  68. $(MEH2I)
  69. vint.inc: vint.h
  70. tdb16.inc: tdb16.h
  71. h2inc -s ..\inc\mvdm.h -s ..\inc\wow.h tdb16.h -o tdb16.inc
  72. !ENDIF