diff options
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index c3474d5..37bcbf6 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -3,12 +3,20 @@ #endif if HAVE_EXPERIMENTAL - EXP_DIR = chat dv gns stream + EXP_DIR = chat dv stream regex endif if LINUX # All of these currently only work on GNU/Linux - LINUX_DIR = dns exit vpn pt + LINUX_DIR = dns gns exit vpn pt +endif + +if HAVE_MYSQL + MYSQL_DIR = mysql +endif + +if HAVE_POSTGRES + POSTGRES_DIR = postgres endif @@ -21,6 +29,8 @@ SUBDIRS = \ statistics \ arm \ peerinfo \ + $(MYSQL_DIR) \ + $(POSTGRES_DIR) \ datacache \ datastore \ namestore \ @@ -32,12 +42,14 @@ SUBDIRS = \ peerinfo-tool \ core \ testing \ + testbed \ nse \ dht \ hostlist \ topology \ fs \ mesh \ + lockmanager \ $(LINUX_DIR) \ integration-tests \ $(EXP_DIR) |