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