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.

75 lines
2.7 KiB

  1. #-------------------------------------------------------------
  2. #
  3. # MINI-DRIVER Make file template
  4. #
  5. #-------------------------------------------------------------
  6. ROOT=..\..\..\..\..\..
  7. SRCDIR=.
  8. C16ONLY=Y
  9. #-------------------------------------------------------------
  10. # The follwing entries should updated
  11. #-------------------------------------------------------------
  12. #
  13. #-------------------------------------------------------------
  14. # Enter the DRV file name (without extension) after DRVNAME =
  15. #-------------------------------------------------------------
  16. DRVNAME = PCL5CH
  17. DRVDESC = HP PCL5 printers
  18. #-------------------------------------------------------------
  19. # This minidriver requires a local heap, so request it
  20. #-------------------------------------------------------------
  21. HEAPSIZE = HEAPSIZE 1024
  22. #-------------------------------------------------------------
  23. # Enter the names of all of the resident font file names
  24. # (with extensions) after FONTS =
  25. #-------------------------------------------------------------
  26. FONTS = PFM\*.PFM
  27. #-------------------------------------------------------------
  28. # Enter the names of all of the version resource files
  29. # (with extensions) after RCV =
  30. #-------------------------------------------------------------
  31. RCV = PCL5CH.RCV
  32. #-------------------------------------------------------------
  33. # Enter the names of all of the character translation tables
  34. # (with extensions) after CTTS =
  35. #-------------------------------------------------------------
  36. CTTS = CTT\*.CTT
  37. #-------------------------------------------------------------
  38. # These are the functions implemented in $(DRVNAME).c
  39. # used to replace the ones in minidriv.c
  40. #-------------------------------------------------------------
  41. #NOFUNCS = -DNODEVINSTALL -DNOCONTROL -DNOREALIZEOBJECT -DNOLIBMAIN
  42. NOFUNCS = -DNODEVINSTALL -DNOCONTROL -DNOREALIZEOBJECT -DNOLIBMAIN -D NOENABLE
  43. #-------------------------------------------------------------
  44. # Extra dependencies for RC and C files
  45. #-------------------------------------------------------------
  46. EXTRA_H = STRINGS.H
  47. EXTRA_RC = STRINGS.RC
  48. #-------------------------------------------------------------
  49. # Extra exported functions
  50. #-------------------------------------------------------------
  51. EXP1 = InstallExtFonts @301
  52. #-------------------------------------------------------------
  53. # Switch to diasble font mapping
  54. #-------------------------------------------------------------
  55. !ifdef NOFONTMAP
  56. CFLAGS=$(CFLAGS) -DNOFONTMAP
  57. !endif
  58. #**********************************************************************
  59. # Do not edit below this line
  60. #**********************************************************************
  61. !include ..\minidriv.mk
  62. !include ..\default.mk