Makefile.am 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # This Makefile.am is in the public domain
  2. AM_CPPFLAGS = -I$(top_srcdir)/src/include
  3. # only documentation (ALL of the documentation)
  4. if DOCUMENTATION_ONLY
  5. SUBDIRS = bin doc
  6. else
  7. SUBDIRS = m4 bin src po pkgconfig
  8. endif
  9. # documentation on / off switch (affects all of the documentation)
  10. if DOCUMENTATION
  11. SUBDIRS += doc
  12. endif
  13. # only manpages, needs "doc" subdir
  14. if INCLUDE_MANPAGES
  15. SUBDIRS += doc
  16. endif
  17. SUBDIRS += contrib
  18. EXTRA_DIST = \
  19. ABOUT-NLS \
  20. config.rpath \
  21. acinclude.m4 \
  22. README.1st
  23. gnunetincludedir = $(includedir)/gnunet
  24. gnunetinclude_HEADERS = gnunet_config.h
  25. docdir = $(datadir)/doc/gnunet/
  26. doc_DATA = COPYING README
  27. ACLOCAL_AMFLAGS = -I m4
  28. if HAVE_UNCRUSTIFY_BINARY
  29. MCRUSTIFY = find $(top_srcdir) -type f -name '*.c' -or -name '*.h' -print0 | xargs -0 uncrustify -c $(top_srcdir)/uncrustify.cfg -q --replace --no-backup 2>&1 || true
  30. else
  31. MCRUSTIFY = echo "crustify: skipped"
  32. endif
  33. if HAVE_YAPF_BINARY
  34. MYAPF = find $(top_srcdir) -type f -name '*.py' -or -name '*.py.in' -print0 | xargs -0 $(YAPF_BINARY) -i 2>&1 || true
  35. else
  36. MYAPF = echo "yapf: skipped"
  37. endif
  38. pretty:
  39. $(MCRUSTIFY)
  40. $(MYAPF)
  41. lint: check-bashisms check-texinfo check-man check-python
  42. check-bashisms:
  43. if HAVE_CHECKBASHISMS
  44. printf "If checkbashisms.pl is in PATH, run checkbashism on all .sh files.\n"
  45. find '.' -type f ! -path '*/.*' ! -path '*/_*' -name '*.sh' -print0 | xargs -0 checkbashisms.pl -f 2>&1 | tee $(srcdir)/bashism.log || true
  46. else
  47. printf "No checkbashisms in PATH, skipped"
  48. endif
  49. check-man:
  50. printf "Running lint-man.sh in doc/man.\n"
  51. @cd $(top_srcdir)/doc/man ; ../../contrib/scripts/lint/lint-man.sh || true
  52. check-python:
  53. printf "Running flake8 and 2to3 if detected.\n"
  54. $(top_srcdir)/contrib/scripts/lint/lint-python.sh || true
  55. if HAVE_AWK
  56. check-texinfo:
  57. @cd $(top_srcdir); find . -type f ! -path '*/.*' -name '*.texi' -print0 | xargs -0 ./contrib/scripts/check-texinfo.awk > $(srcdir)/texinfo_lint.log || true
  58. endif