/share/Makefile

https://bitbucket.org/freebsd/freebsd-head/ · Makefile · 86 lines · 65 code · 17 blank · 4 comment · 12 complexity · 78b94110d6f1ef46ad5f2ad50d4fc106 MD5 · raw file

  1. # @(#)Makefile 8.1 (Berkeley) 6/5/93
  2. # $FreeBSD$
  3. .include <bsd.own.mk>
  4. # Do not include `info' in the SUBDIR list, it is handled separately.
  5. SUBDIR= ${_colldef} \
  6. ${_dict} \
  7. ${_doc} \
  8. dtrace \
  9. ${_examples} \
  10. ${_i18n} \
  11. ${_man} \
  12. ${_me} \
  13. misc \
  14. ${_mk} \
  15. ${_mklocale} \
  16. ${_monetdef} \
  17. ${_msgdef} \
  18. ${_numericdef} \
  19. ${_sendmail} \
  20. skel \
  21. ${_snmp} \
  22. ${_syscons} \
  23. tabset \
  24. termcap \
  25. ${_timedef} \
  26. ${_zoneinfo}
  27. # NB: keep these sorted by MK_* knobs
  28. .if ${MK_BSNMP} != "no"
  29. _snmp= snmp
  30. .endif
  31. .if ${MK_DICT} != "no"
  32. _dict= dict
  33. .endif
  34. .if ${MK_EXAMPLES} != "no"
  35. _examples= examples
  36. .endif
  37. .if ${MK_GROFF} != "no"
  38. _me= me
  39. .endif
  40. .if ${MK_ICONV} != "no"
  41. _i18n= i18n
  42. .endif
  43. .if ${MK_LOCALES} != "no"
  44. _colldef = colldef
  45. _mklocale = mklocale
  46. _monetdef = monetdef
  47. _msgdef = msgdef
  48. _numericdef = numericdef
  49. _timedef = timedef
  50. .endif
  51. .if ${MK_MAKE} != "no"
  52. _mk= mk
  53. .endif
  54. .if ${MK_MAN} != "no"
  55. _man= man
  56. .endif
  57. .if ${MK_SENDMAIL} != "no"
  58. _sendmail= sendmail
  59. .endif
  60. .if ${MK_SHAREDOCS} != "no"
  61. _doc= doc
  62. .endif
  63. .if ${MK_SYSCONS} != "no"
  64. _syscons= syscons
  65. .endif
  66. .if ${MK_ZONEINFO} != "no"
  67. _zoneinfo= zoneinfo
  68. .endif
  69. .include <bsd.subdir.mk>