Makefile 791 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # $Whistle: Makefile,v 1.5 1999/01/24 06:48:37 archie Exp $
  2. SYSDIR?=${SRCTOP}/sys
  3. .include "${SYSDIR}/conf/kern.opts.mk"
  4. SUBDIR= async \
  5. ${_bluetooth} \
  6. bpf \
  7. bridge \
  8. car \
  9. checksum \
  10. cisco \
  11. deflate \
  12. device \
  13. echo \
  14. eiface \
  15. etf \
  16. ether \
  17. ether_echo \
  18. frame_relay \
  19. gif \
  20. gif_demux \
  21. hole \
  22. hub \
  23. iface \
  24. ip_input \
  25. ipfw \
  26. ksocket \
  27. l2tp \
  28. lmi \
  29. macfilter \
  30. ${_mppc} \
  31. nat \
  32. netflow \
  33. netgraph \
  34. one2many \
  35. patch \
  36. pipe \
  37. ppp \
  38. pppoe \
  39. pptpgre \
  40. pred1 \
  41. rfc1490 \
  42. socket \
  43. source \
  44. split \
  45. tag \
  46. tcpmss \
  47. tee \
  48. tty \
  49. UI \
  50. vjc \
  51. vlan \
  52. vlan_rotate
  53. .if ${MK_BLUETOOTH} != "no" || defined(ALL_MODULES)
  54. _bluetooth= bluetooth
  55. .endif
  56. .if ${MK_CRYPT} != "no" && exists(${SYSDIR}/crypto/rc4/rc4.c)
  57. _mppc= mppc
  58. .endif
  59. .include <bsd.subdir.mk>