aboutsummaryrefslogtreecommitdiff
path: root/src/namecache
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-09-13 13:54:57 +0000
committerChristian Grothoff <christian@grothoff.org>2014-09-13 13:54:57 +0000
commitd94c5185fcdf47c6a57d3233b946fa7e621f7ad9 (patch)
tree1ded577285183d6457bde8787b9bccaa01f12143 /src/namecache
parente184df6030ab5c5374fe3b8a94482ff5a30c1580 (diff)
downloadgnunet-d94c5185fcdf47c6a57d3233b946fa7e621f7ad9.tar.gz
gnunet-d94c5185fcdf47c6a57d3233b946fa7e621f7ad9.zip
fixing parallel build, getting rid of useless _DEPENDENCIES declarations
Diffstat (limited to 'src/namecache')
-rw-r--r--src/namecache/Makefile.am27
1 files changed, 5 insertions, 22 deletions
diff --git a/src/namecache/Makefile.am b/src/namecache/Makefile.am
index 16015e39f..81367c3c6 100644
--- a/src/namecache/Makefile.am
+++ b/src/namecache/Makefile.am
@@ -79,12 +79,8 @@ gnunet_namecache_SOURCES = \
79gnunet_namecache_LDADD = \ 79gnunet_namecache_LDADD = \
80 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 80 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
81 $(top_builddir)/src/util/libgnunetutil.la \ 81 $(top_builddir)/src/util/libgnunetutil.la \
82 $(top_builddir)/src/namecache/libgnunetnamecache.la \ 82 libgnunetnamecache.la \
83 $(GN_LIBINTL) 83 $(GN_LIBINTL)
84gnunet_namecache_DEPENDENCIES = \
85 $(top_builddir)/src/identity/libgnunetidentity.la \
86 $(top_builddir)/src/util/libgnunetutil.la \
87 $(top_builddir)/src/namecache/libgnunetnamecache.la
88 84
89gnunet_service_namecache_SOURCES = \ 85gnunet_service_namecache_SOURCES = \
90 gnunet-service-namecache.c 86 gnunet-service-namecache.c
@@ -93,12 +89,8 @@ gnunet_service_namecache_LDADD = \
93 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 89 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
94 $(top_builddir)/src/statistics/libgnunetstatistics.la \ 90 $(top_builddir)/src/statistics/libgnunetstatistics.la \
95 $(top_builddir)/src/util/libgnunetutil.la \ 91 $(top_builddir)/src/util/libgnunetutil.la \
96 $(top_builddir)/src/namecache/libgnunetnamecache.la \ 92 libgnunetnamecache.la \
97 $(GN_LIBINTL) 93 $(GN_LIBINTL)
98gnunet_service_namecache_DEPENDENCIES = \
99 $(top_builddir)/src/statistics/libgnunetstatistics.la \
100 $(top_builddir)/src/util/libgnunetutil.la \
101 $(top_builddir)/src/namecache/libgnunetnamecache.la
102 94
103 95
104plugin_LTLIBRARIES = \ 96plugin_LTLIBRARIES = \
@@ -108,39 +100,30 @@ plugin_LTLIBRARIES = \
108libgnunet_plugin_namecache_sqlite_la_SOURCES = \ 100libgnunet_plugin_namecache_sqlite_la_SOURCES = \
109 plugin_namecache_sqlite.c 101 plugin_namecache_sqlite.c
110libgnunet_plugin_namecache_sqlite_la_LIBADD = \ 102libgnunet_plugin_namecache_sqlite_la_LIBADD = \
111 $(top_builddir)/src/namecache/libgnunetnamecache.la \ 103 libgnunetnamecache.la \
112 $(top_builddir)/src/statistics/libgnunetstatistics.la \ 104 $(top_builddir)/src/statistics/libgnunetstatistics.la \
113 $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lsqlite3 \ 105 $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lsqlite3 \
114 $(LTLIBINTL) 106 $(LTLIBINTL)
115libgnunet_plugin_namecache_sqlite_la_LDFLAGS = \ 107libgnunet_plugin_namecache_sqlite_la_LDFLAGS = \
116 $(GN_PLUGIN_LDFLAGS) 108 $(GN_PLUGIN_LDFLAGS)
117libgnunet_plugin_namecache_sqlite_la_DEPENDENCIES = \
118 $(top_builddir)/src/statistics/libgnunetstatistics.la \
119 $(top_builddir)/src/util/libgnunetutil.la \
120 $(top_builddir)/src/namecache/libgnunetnamecache.la
121 109
122 110
123libgnunet_plugin_namecache_postgres_la_SOURCES = \ 111libgnunet_plugin_namecache_postgres_la_SOURCES = \
124 plugin_namecache_postgres.c 112 plugin_namecache_postgres.c
125libgnunet_plugin_namecache_postgres_la_LIBADD = \ 113libgnunet_plugin_namecache_postgres_la_LIBADD = \
126 $(top_builddir)/src/namecache/libgnunetnamecache.la \ 114 libgnunetnamecache.la \
127 $(top_builddir)/src/postgres/libgnunetpostgres.la \ 115 $(top_builddir)/src/postgres/libgnunetpostgres.la \
128 $(top_builddir)/src/statistics/libgnunetstatistics.la \ 116 $(top_builddir)/src/statistics/libgnunetstatistics.la \
129 $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lpq \ 117 $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lpq \
130 $(LTLIBINTL) 118 $(LTLIBINTL)
131libgnunet_plugin_namecache_postgres_la_LDFLAGS = \ 119libgnunet_plugin_namecache_postgres_la_LDFLAGS = \
132 $(GN_PLUGIN_LDFLAGS) $(POSTGRESQL_LDFLAGS) 120 $(GN_PLUGIN_LDFLAGS) $(POSTGRESQL_LDFLAGS)
133libgnunet_plugin_namecache_postgres_la_DEPENDENCIES = \
134 $(top_builddir)/src/postgres/libgnunetpostgres.la \
135 $(top_builddir)/src/statistics/libgnunetstatistics.la \
136 $(top_builddir)/src/util/libgnunetutil.la \
137 $(top_builddir)/src/namecache/libgnunetnamecache.la
138 121
139test_namecache_api_cache_block_SOURCES = \ 122test_namecache_api_cache_block_SOURCES = \
140 test_namecache_api_cache_block.c 123 test_namecache_api_cache_block.c
141test_namecache_api_cache_block_LDADD = \ 124test_namecache_api_cache_block_LDADD = \
142 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ 125 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
143 $(top_builddir)/src/namecache/libgnunetnamecache.la \ 126 libgnunetnamecache.la \
144 $(top_builddir)/src/testing/libgnunettesting.la \ 127 $(top_builddir)/src/testing/libgnunettesting.la \
145 $(top_builddir)/src/util/libgnunetutil.la 128 $(top_builddir)/src/util/libgnunetutil.la
146 129