safety checks for lint-man.sh
[oweals/gnunet.git] / Makefile.am
1 # This Makefile.am is in the public domain
2 AM_CPPFLAGS = -I$(top_srcdir)/src/include
3
4 if DOCUMENTATION_ONLY
5   SUBDIRS = doc
6 else
7   SUBDIRS = m4 src po pkgconfig
8 if DOCUMENTATION
9   SUBDIRS += doc
10 endif
11 endif
12
13 if !TALER_ONLY
14   SUBDIRS += contrib
15 endif
16
17 EXTRA_DIST = \
18  ABOUT-NLS \
19  config.rpath \
20  acinclude.m4 \
21  README.1st
22
23 gnunetincludedir = $(includedir)/gnunet
24 gnunetinclude_HEADERS = gnunet_config.h
25
26 docdir = $(datadir)/doc/gnunet/
27 doc_DATA = COPYING README
28
29 ACLOCAL_AMFLAGS = -I m4
30
31 # Check for bashisms in shell scripts
32 # Very verbose, need to exclude more files.
33 check-bashism:
34         printf "Run checkbashism on all .sh files.\n"
35         printf "Currently this expects checkbashism.pl at a fixed location."
36         find . -type f ! -path '*/.*' ! -path '*/_*' -name '*.sh' -print0 | xargs -0 ~/src/scripts/src/checkbashisms.pl -f 2>&1 | tee $(top_srcdir)/bashism.log || true
37
38 check-python:
39         printf "Running flake8 and 2to3 if detected.\n"
40         $(top_srcdir)/contrib/scripts/lint-python.sh || true
41
42 check-man:
43         printf "Running lint-man.sh in doc/man.\n"
44         @cd $(top_srcdir)/doc/man ; $(top_srcdir)/../../contrib/scripts/lint-man.sh || true
45
46 check-linters: check-bashism check-python check-man