Makefile.am 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. # This Makefile.am is in the public domain
  2. #if WANT_FRAMEWORK
  3. # INTLEMU_SUBDIRS = intlemu
  4. #endif
  5. if HAVE_TESTING
  6. TESTING = testing
  7. TESTBED = testbed-logger testbed
  8. ATS_TESTS = ats-tests
  9. endif
  10. if HAVE_EXPERIMENTAL
  11. EXP_DIR = \
  12. rps \
  13. abd \
  14. reclaim-attribute \
  15. reclaim
  16. if HAVE_ABE
  17. EXP_DIR += \
  18. abe
  19. endif
  20. if HAVE_JSON
  21. EXP_DIR += \
  22. auction
  23. endif
  24. endif
  25. if HAVE_JSON
  26. JSON_DIR = json
  27. if HAVE_LIBGNURL
  28. JSON_DIR += curl
  29. else
  30. if HAVE_LIBCURL
  31. JSON_DIR += curl
  32. endif
  33. endif
  34. endif
  35. if BUILD_PULSE_HELPERS
  36. CONVERSATION_DIR = conversation
  37. else
  38. if BUILD_GST_HELPERS
  39. CONVERSATION_DIR = conversation
  40. endif
  41. endif
  42. if HAVE_SQLITE
  43. SQLITE_DIR = sq
  44. endif
  45. if HAVE_MYSQL
  46. MYSQL_DIR = mysql my
  47. endif
  48. if HAVE_POSTGRESQL
  49. POSTGRES_DIR = pq
  50. endif
  51. if HAVE_MHD
  52. if HAVE_JSON
  53. REST_DIR = rest
  54. endif
  55. endif
  56. if TALER_ONLY
  57. SUBDIRS = \
  58. include \
  59. util
  60. else
  61. SUBDIRS = \
  62. include $(INTLEMU_SUBDIRS) \
  63. util \
  64. nt \
  65. gnsrecord \
  66. hello \
  67. block \
  68. statistics \
  69. arm \
  70. $(TESTING) \
  71. $(JSON_DIR) \
  72. $(REST_DIR) \
  73. peerinfo \
  74. $(SQLITE_DIR) \
  75. $(MYSQL_DIR) \
  76. $(POSTGRES_DIR) \
  77. datacache \
  78. datastore \
  79. template \
  80. peerstore \
  81. ats \
  82. nat \
  83. nat-auto \
  84. fragmentation \
  85. transport \
  86. ats-tool \
  87. peerinfo-tool \
  88. core \
  89. $(TESTBED) \
  90. $(ATS_TESTS) \
  91. nse \
  92. dht \
  93. hostlist \
  94. topology \
  95. regex \
  96. dns \
  97. identity \
  98. namecache \
  99. namestore \
  100. cadet \
  101. set \
  102. consensus \
  103. scalarproduct \
  104. revocation \
  105. vpn \
  106. gns \
  107. zonemaster \
  108. $(CONVERSATION_DIR) \
  109. fs \
  110. exit \
  111. pt \
  112. secretsharing \
  113. $(EXP_DIR) \
  114. integration-tests
  115. endif