diff options
author | Christian Grothoff <christian@grothoff.org> | 2014-09-13 13:54:57 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2014-09-13 13:54:57 +0000 |
commit | d94c5185fcdf47c6a57d3233b946fa7e621f7ad9 (patch) | |
tree | 1ded577285183d6457bde8787b9bccaa01f12143 /src/namecache | |
parent | e184df6030ab5c5374fe3b8a94482ff5a30c1580 (diff) |
fixing parallel build, getting rid of useless _DEPENDENCIES declarations
Diffstat (limited to 'src/namecache')
-rw-r--r-- | src/namecache/Makefile.am | 27 |
1 files changed, 5 insertions, 22 deletions
diff --git a/src/namecache/Makefile.am b/src/namecache/Makefile.am index 16015e39f8..81367c3c67 100644 --- a/src/namecache/Makefile.am +++ b/src/namecache/Makefile.am @@ -79,12 +79,8 @@ gnunet_namecache_SOURCES = \ gnunet_namecache_LDADD = \ $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ $(top_builddir)/src/util/libgnunetutil.la \ - $(top_builddir)/src/namecache/libgnunetnamecache.la \ + libgnunetnamecache.la \ $(GN_LIBINTL) -gnunet_namecache_DEPENDENCIES = \ - $(top_builddir)/src/identity/libgnunetidentity.la \ - $(top_builddir)/src/util/libgnunetutil.la \ - $(top_builddir)/src/namecache/libgnunetnamecache.la gnunet_service_namecache_SOURCES = \ gnunet-service-namecache.c @@ -93,12 +89,8 @@ gnunet_service_namecache_LDADD = \ $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ $(top_builddir)/src/statistics/libgnunetstatistics.la \ $(top_builddir)/src/util/libgnunetutil.la \ - $(top_builddir)/src/namecache/libgnunetnamecache.la \ + libgnunetnamecache.la \ $(GN_LIBINTL) -gnunet_service_namecache_DEPENDENCIES = \ - $(top_builddir)/src/statistics/libgnunetstatistics.la \ - $(top_builddir)/src/util/libgnunetutil.la \ - $(top_builddir)/src/namecache/libgnunetnamecache.la plugin_LTLIBRARIES = \ @@ -108,39 +100,30 @@ plugin_LTLIBRARIES = \ libgnunet_plugin_namecache_sqlite_la_SOURCES = \ plugin_namecache_sqlite.c libgnunet_plugin_namecache_sqlite_la_LIBADD = \ - $(top_builddir)/src/namecache/libgnunetnamecache.la \ + libgnunetnamecache.la \ $(top_builddir)/src/statistics/libgnunetstatistics.la \ $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lsqlite3 \ $(LTLIBINTL) libgnunet_plugin_namecache_sqlite_la_LDFLAGS = \ $(GN_PLUGIN_LDFLAGS) -libgnunet_plugin_namecache_sqlite_la_DEPENDENCIES = \ - $(top_builddir)/src/statistics/libgnunetstatistics.la \ - $(top_builddir)/src/util/libgnunetutil.la \ - $(top_builddir)/src/namecache/libgnunetnamecache.la libgnunet_plugin_namecache_postgres_la_SOURCES = \ plugin_namecache_postgres.c libgnunet_plugin_namecache_postgres_la_LIBADD = \ - $(top_builddir)/src/namecache/libgnunetnamecache.la \ + libgnunetnamecache.la \ $(top_builddir)/src/postgres/libgnunetpostgres.la \ $(top_builddir)/src/statistics/libgnunetstatistics.la \ $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lpq \ $(LTLIBINTL) libgnunet_plugin_namecache_postgres_la_LDFLAGS = \ $(GN_PLUGIN_LDFLAGS) $(POSTGRESQL_LDFLAGS) -libgnunet_plugin_namecache_postgres_la_DEPENDENCIES = \ - $(top_builddir)/src/postgres/libgnunetpostgres.la \ - $(top_builddir)/src/statistics/libgnunetstatistics.la \ - $(top_builddir)/src/util/libgnunetutil.la \ - $(top_builddir)/src/namecache/libgnunetnamecache.la test_namecache_api_cache_block_SOURCES = \ test_namecache_api_cache_block.c test_namecache_api_cache_block_LDADD = \ $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \ - $(top_builddir)/src/namecache/libgnunetnamecache.la \ + libgnunetnamecache.la \ $(top_builddir)/src/testing/libgnunettesting.la \ $(top_builddir)/src/util/libgnunetutil.la |