Makefile.am 919 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. INCLUDES = -I$(top_srcdir)/src/include
  2. if USE_COVERAGE
  3. AM_CFLAGS = --coverage -O0
  4. endif
  5. bin_PROGRAMS = \
  6. gnunet-daemon-topology
  7. gnunet_daemon_topology_SOURCES = \
  8. gnunet-daemon-topology.c
  9. gnunet_daemon_topology_LDADD = \
  10. $(top_builddir)/src/core/libgnunetcore.la \
  11. $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
  12. $(top_builddir)/src/statistics/libgnunetstatistics.la \
  13. $(top_builddir)/src/transport/libgnunettransport.la \
  14. $(top_builddir)/src/hello/libgnunethello.la \
  15. $(top_builddir)/src/util/libgnunetutil.la \
  16. $(GN_LIBINTL)
  17. check_PROGRAMS = \
  18. test_gnunet_daemon_topology
  19. if ENABLE_TEST_RUN
  20. TESTS = $(check_PROGRAMS)
  21. endif
  22. test_gnunet_daemon_topology_SOURCES = \
  23. test_gnunet_daemon_topology.c
  24. test_gnunet_daemon_topology_LDADD = \
  25. $(top_builddir)/src/testing/libgnunettesting.la \
  26. $(top_builddir)/src/util/libgnunetutil.la
  27. EXTRA_DIST = \
  28. test_gnunet_daemon_topology_data.conf