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