Makefile.am 629 B

123456789101112131415161718192021222324252627282930313233343536
  1. # This Makefile.am is in the public domain
  2. AM_CPPFLAGS = -I$(top_srcdir)/src/include
  3. if MINGW
  4. WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
  5. endif
  6. if USE_COVERAGE
  7. AM_CFLAGS = --coverage
  8. endif
  9. lib_LTLIBRARIES = libgnunetnt.la
  10. libgnunetnt_la_SOURCES = \
  11. nt.c
  12. libgnunetnt_la_LIBADD = \
  13. $(top_builddir)/src/util/libgnunetutil.la
  14. libgnunetnt_la_LDFLAGS = \
  15. $(GN_LIB_LDFLAGS) \
  16. -version-info 0:0:0
  17. #if ENABLE_TEST_RUN
  18. #TESTS = \
  19. # test_nt
  20. #endif
  21. #check_PROGRAMS= \
  22. # test_nt
  23. #
  24. #test_nt_SOURCES = \
  25. # test_nt.c
  26. #test_nt_LDADD = \
  27. # libgnunetnt.la \
  28. # $(top_builddir)/src/util/libgnunetutil.la \
  29. # $(XLIB)