aboutsummaryrefslogtreecommitdiff
path: root/contrib/scripts/Makefile.am
blob: f8b7ec3d1fe53772d3ea02b02742086bf80713ce (plain) (blame)
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
# This Makefile.am is in the public domain
AM_CPPFLAGS = -I$(top_srcdir)/src/include -I$(top_builddir)/src/include

SUBDIRS = gnunet-logread

noinst_SCRIPTS = \
 terminate.py \
 pydiffer.py \
 removetrailingwhitespace.py \
 gnunet_pyexpect.py \
 gnunet_janitor.py \
 gnunet-chk.py \
 $(awkSCRIPTS)

# FIXME: read into AWK_SCRIPTS autotools builtin.
if HAVE_AWK
awkSCRIPTS = \
 check-texinfo.awk
else
awkSCRIPTS =
endif

bin_SCRIPTS = \
 gnunet-bugreport \
 gnunet-suidfix

EXTRA_DIST = \
 coverage.sh \
 terminate.py.in \
 gnunet_pyexpect.py.in \
 gnunet_janitor.py.in \
 gnunet-chk.py.in \
 $(SCRIPTS) \
 removetrailingwhitespace.py.in \
 pydiffer.py.in \
 gnunet-suidfix \
 check-texinfo.awk.in

CLEANFILES = \
  $(noinst_SCRIPTS)

# Use SUFFIX Extension rules, they are more portable for every
# implementation of 'make'.
# You'll also run into the "'%' is a GNU make extension warning"
# if you use this:
#
#%.py: %.py.in Makefile
#	$(do_subst) < $< > $@
#	chmod +x $@
#
# instead of this:
SUFFIXES = .py.in .py

.py.in.py:
	$(AWK) -v bdir="$(bindir)" -v py="$(PYTHON)" -v awkay="$(AWK_BINARY)" -v pfx="$(prefix)" -v prl="$(PERL)" -v sysconfdirectory="$(sysconfdir)" -v pkgdatadirectory="$(pkgdatadir)" -f $(top_srcdir)/bin/dosubst.awk < $< > $@
	chmod +x $@

if HAVE_AWK
check-texinfo.awk: check-texinfo.awk.in Makefile
	$(AWK) -v bdir="$(bindir)" -v py="$(PYTHON)" -v awkay="$(AWK_BINARY)" -v pfx="$(prefix)" -v prl="$(PERL)" -v sysconfdirectory="$(sysconfdir)" -v pkgdatadirectory="$(pkgdatadir)" -f $(top_srcdir)/bin/dosubst.awk < $(srcdir)/check-texinfo.awk.in > check-texinfo.awk
	chmod +x check-texinfo.awk
endif