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