Makefile 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. .include <src.opts.mk>
  2. SUBDIR=adjkerntz \
  3. camcontrol \
  4. clri \
  5. comcontrol \
  6. conscontrol \
  7. ddb \
  8. devd \
  9. devfs \
  10. devmatch \
  11. dhclient \
  12. dmesg \
  13. dump \
  14. dumpfs \
  15. dumpon \
  16. etherswitchcfg \
  17. ffsinfo \
  18. fsck \
  19. fsck_ffs \
  20. fsck_msdosfs \
  21. fsdb \
  22. fsirand \
  23. geom \
  24. ggate \
  25. growfs \
  26. gvinum \
  27. ifconfig \
  28. init \
  29. kldconfig \
  30. kldload \
  31. kldstat \
  32. kldunload \
  33. ldconfig \
  34. md5 \
  35. mdconfig \
  36. mdmfs \
  37. mknod \
  38. mksnap_ffs \
  39. mount \
  40. mount_cd9660 \
  41. mount_fusefs \
  42. mount_msdosfs \
  43. mount_nfs \
  44. mount_nullfs \
  45. mount_udf \
  46. mount_unionfs \
  47. newfs \
  48. newfs_msdos \
  49. nfsiod \
  50. nos-tun \
  51. nvmecontrol \
  52. pfilctl \
  53. rcorder \
  54. reboot \
  55. recoverdisk \
  56. resolvconf \
  57. restore \
  58. route \
  59. savecore \
  60. setkey \
  61. shutdown \
  62. swapon \
  63. sysctl \
  64. tunefs \
  65. umount
  66. .if ${MK_INET} != "no" || ${MK_INET6} != "no"
  67. SUBDIR+= ping
  68. .endif
  69. SUBDIR.${MK_CCD}+= ccdconfig
  70. SUBDIR.${MK_HAST}+= hastctl
  71. SUBDIR.${MK_HAST}+= hastd
  72. SUBDIR.${MK_INET6}+= rtsol
  73. SUBDIR.${MK_IPFILTER}+= ipf
  74. SUBDIR.${MK_IPFW}+= ipfw
  75. SUBDIR.${MK_IPFW}+= natd
  76. SUBDIR.${MK_OPENSSL}+= decryptcore
  77. SUBDIR.${MK_PF}+= pfctl
  78. SUBDIR.${MK_PF}+= pflogd
  79. SUBDIR.${MK_PF}+= pflowctl
  80. SUBDIR.${MK_QUOTAS}+= quotacheck
  81. SUBDIR.${MK_ROUTED}+= routed
  82. SUBDIR.${MK_VERIEXEC}+= veriexec
  83. SUBDIR.${MK_ZFS}+= bectl
  84. SUBDIR.${MK_ZFS}+= zfsbootcfg
  85. SUBDIR.${MK_TESTS}+= tests
  86. .include <bsd.arch.inc.mk>
  87. SUBDIR_PARALLEL=
  88. .include <bsd.prog.mk>
  89. .include <bsd.subdir.mk>