Makefile.am 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # This Makefile.am is in the public domain
  2. AM_CPPFLAGS = -I$(top_srcdir)/src/include -I$(top_builddir)/src/include
  3. SUBDIRS = scripts hellos services
  4. dist_pkgdata_DATA = \
  5. gns/gns-bcd.html \
  6. gns/gns-bcd.tex \
  7. gns/def.tex \
  8. gns/gns-form-fields.xml \
  9. gns/gns-form.xslt \
  10. branding/logo/gnunet-logo.pdf \
  11. branding/logo/gnunet-logo-color.png \
  12. testing_hostkeys.ecc
  13. INITD_FILES = \
  14. services/openrc/gnunet.initd \
  15. services/systemd/gnunet.service
  16. EXTRA_DIST = \
  17. conf/colorit/colorit.conf \
  18. conf/.style.yapf \
  19. conf/editors/eclipse/gnunet_codingstyle.xml \
  20. conf/gnunet/no_forcestart.conf \
  21. conf/gnunet/no_autostart_above_core.conf \
  22. conf/gnunet/gnunet-system.conf \
  23. conf/gnunet/gnunet-user.conf \
  24. conf/nss/nssswitch.conf \
  25. conf/wireshark/wireshark.lua \
  26. packages/nix/default.nix \
  27. packages/nix/gnunet-dev.nix \
  28. $(INITD_FILES)
  29. check_PROGRAMS = \
  30. test_gnunet_prefix
  31. if ENABLE_TEST_RUN
  32. AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
  33. TESTS = $(check_PROGRAMS)
  34. endif
  35. test_gnunet_prefix_SOURCES = \
  36. test_gnunet_prefix.c
  37. test_gnunet_prefix_CPPFLAGS = \
  38. $(LTDLINCL) $(AM_CPPFLAGS)
  39. test_gnunet_prefix_LDADD = \
  40. $(GCLIBADD) $(WINLIB) \
  41. $(LTLIBICONV) \
  42. $(GN_LIBINTL) \
  43. $(LIBLTDL) -lunistring $(XLIB)