Makefile.am 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. # This Makefile.am is in the public domain
  2. AM_CPPFLAGS = -I$(top_srcdir)/src/include -I$(top_builddir)/src/include
  3. SUBDIRS = gnunet-logread
  4. # FIXME: read into AWK_SCRIPTS autotools builtin.
  5. if HAVE_AWK
  6. awkSCRIPTS = \
  7. check-texinfo.awk
  8. else
  9. awkSCRIPTS =
  10. endif
  11. noinst_SCRIPTS = \
  12. terminate.py \
  13. pydiffer.py \
  14. removetrailingwhitespace.py \
  15. gnunet_pyexpect.py \
  16. gnunet_janitor.py \
  17. gnunet-chk.py \
  18. $(awkSCRIPTS)
  19. bin_SCRIPTS = \
  20. gnunet-bugreport \
  21. gnunet-suidfix
  22. EXTRA_DIST = \
  23. coverage.sh \
  24. terminate.py.in \
  25. gnunet_pyexpect.py.in \
  26. gnunet_janitor.py.in \
  27. gnunet-chk.py.in \
  28. removetrailingwhitespace.py.in \
  29. pydiffer.py.in \
  30. check-texinfo.awk.in \
  31. build-install-gnunet-debian10.sh \
  32. process_log.sh \
  33. generate-monkey-db.sh \
  34. find_typedefs.py \
  35. pydmesg \
  36. visualize_stats.sh \
  37. changelog_delta.sh \
  38. debug \
  39. build_cscope.sh \
  40. testbed_cleanup.sh \
  41. lint/lint-man.sh \
  42. lint/lint-python.sh \
  43. revisionary.sh \
  44. netjail/netjail_core.sh \
  45. netjail/netjail_setup_internet.sh \
  46. regression.sh \
  47. doc/texinfo-hacks.el \
  48. afferify \
  49. zonewalk-to-types.sh \
  50. gdb-iterate-dll.py \
  51. $(SCRIPTS)
  52. CLEANFILES = \
  53. $(noinst_SCRIPTS)
  54. # Use SUFFIX Extension rules, they are more portable for every
  55. # implementation of 'make'.
  56. # You'll also run into the "'%' is a GNU make extension warning"
  57. # if you use this:
  58. #
  59. #%.py: %.py.in Makefile
  60. # $(do_subst) < $< > $@
  61. # chmod +x $@
  62. #
  63. # instead of this:
  64. SUFFIXES = .py.in .py
  65. .py.in.py:
  66. $(AWK) -v py="$(PYTHON)" -f $(top_srcdir)/bin/dosubst.awk < $< > $@
  67. chmod +x $@
  68. if HAVE_AWK
  69. check-texinfo.awk: check-texinfo.awk.in Makefile
  70. $(AWK) -v awkay="$(AWK_BINARY)" -f $(top_srcdir)/bin/dosubst.awk < $(srcdir)/check-texinfo.awk.in > check-texinfo.awk
  71. chmod +x check-texinfo.awk
  72. endif