Makefile.am 709 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #if WANT_FRAMEWORK
  2. # INTLEMU_SUBDIRS = intlemu
  3. #endif
  4. if HAVE_EXPERIMENTAL
  5. EXP_DIR = chat dv stream regex
  6. endif
  7. if LINUX
  8. # All of these currently only work on GNU/Linux
  9. LINUX_DIR = dns gns exit vpn pt
  10. endif
  11. if HAVE_MYSQL
  12. MYSQL_DIR = mysql
  13. endif
  14. if HAVE_POSTGRES
  15. POSTGRES_DIR = postgres
  16. endif
  17. SUBDIRS = \
  18. include $(INTLEMU_SUBDIRS) \
  19. util \
  20. hello \
  21. tun \
  22. block \
  23. statistics \
  24. arm \
  25. peerinfo \
  26. $(MYSQL_DIR) \
  27. $(POSTGRES_DIR) \
  28. datacache \
  29. datastore \
  30. namestore \
  31. template \
  32. ats \
  33. nat \
  34. fragmentation \
  35. transport \
  36. peerinfo-tool \
  37. core \
  38. testing \
  39. nse \
  40. dht \
  41. hostlist \
  42. topology \
  43. fs \
  44. mesh \
  45. $(LINUX_DIR) \
  46. integration-tests \
  47. $(EXP_DIR)