blob: 1e348233d9908aae237bf3153c943cade147ffd9 (
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
# This Makefile.am is in the public domain
AM_CPPFLAGS = -I$(top_srcdir)/src/include -I$(top_builddir)/src/include
tap32dir = $(pkgdatadir)/openvpn-tap32/tapw32/
tap64dir = $(pkgdatadir)/openvpn-tap32/tapw64/
noinst_PROGRAMS = \
timeout_watchdog
if !MINGW
timeout_watchdog_SOURCES = \
timeout_watchdog.c
else
timeout_watchdog_SOURCES = \
timeout_watchdog_w32.c
endif
noinst_SCRIPTS = \
scripts/terminate.py \
scripts/pydiffer.py \
scripts/removetrailingwhitespace.py \
scripts/gnunet_pyexpect.py \
scripts/gnunet_janitor.py \
scripts/gnunet-chk.py
dist_pkgdata_DATA = \
gns/gns-bcd.html \
gns/gns-bcd.tex \
gns/def.tex \
gns/gns-form-fields.xml \
gns/gns-form.xslt \
branding/logo/gnunet-logo.pdf \
branding/logo/gnunet-logo-color.png \
testing_hostkeys.ecc
if MINGW
tap32_DATA = \
3rdparty/Windows/openvpn-tap32/tapw32/tap0901.sys \
3rdparty/Windows/openvpn-tap32/tapw32/tap0901.cat \
3rdparty/Windows/openvpn-tap32/tapw32/OemWin2k.inf
tap64_DATA = \
3rdparty/Windows/openvpn-tap32/tapw64/tap0901.sys \
3rdparty/Windows/openvpn-tap32/tapw64/tap0901.cat \
3rdparty/Windows/openvpn-tap32/tapw64/OemWin2k.inf
endif
EXTRA_DIST = \
conf/colorit/colorit.conf \
conf/editors/eclipse/gnunet_codingstyle.xml \
conf/gnunet/no_forcestart.conf \
conf/gnunet/no_autostart_above_core.conf \
conf/nss/nssswitch.conf \
conf/wireshark/wireshark.lua \
scripts/coverage.sh \
scripts/terminate.py.in \
scripts/gnunet_pyexpect.py.in \
scripts/gnunet_janitor.py.in \
scripts/gnunet-chk.py.in \
scripts/removetrailingwhitespace.py.in \
scripts/pydiffer.py.in \
packages/nix/default.nix \
packages/nix/gnunet-dev.nix \
3rdparty/Windows/openvpn-tap32/tapw32/tap0901.sys \
3rdparty/Windows/openvpn-tap32/tapw32/tap0901.cat \
3rdparty/Windows/openvpn-tap32/tapw32/OemWin2k.inf \
3rdparty/Windows/openvpn-tap32/tapw64/tap0901.sys \
3rdparty/Windows/openvpn-tap32/tapw64/tap0901.cat \
3rdparty/Windows/openvpn-tap32/tapw64/OemWin2k.inf \
3rdparty/Windows/openvpn-tap32/INSTALL \
3rdparty/Windows/openvpn-tap32/tap32-signed-i386-2.1.zip \
3rdparty/Windows/openvpn-tap32/tap32-source-2.1.zip
CLEANFILES = \
$(noinst_SCRIPTS)
do_subst = $(SED) -e 's,[@]PYTHON[@],$(PYTHON),g'
# 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 =
SUFFIXES = .py.in .py
.py.in.py:
$(do_subst) < $< > $@
chmod +x $@
check_PROGRAMS = \
test_gnunet_prefix
if ENABLE_TEST_RUN
AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
TESTS = $(check_PROGRAMS)
endif
test_gnunet_prefix_SOURCES = \
test_gnunet_prefix.c
test_gnunet_prefix_CPPFLAGS = \
$(LTDLINCL) $(AM_CPPFLAGS)
test_gnunet_prefix_LDADD = \
$(GCLIBADD) $(WINLIB) \
$(LTLIBICONV) \
$(GN_LIBINTL) \
$(LIBLTDL) -lunistring $(XLIB)
pkghellodir= $(pkgdatadir)/hellos
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(pkghellodir)
@$(NORMAL_INSTALL)
for hello in $(srcdir)/hellos/*; do \
if test -f $$hello; then \
$(INSTALL_DATA) $$hello $(DESTDIR)$(pkghellodir)/ ; \
fi \
done
install scripts/gnunet-bugreport $(DESTDIR)$(bindir)/gnunet-bugreport
dist-hook:
if test -d $(srcdir)/hellos; then \
mkdir -p $(distdir)/hellos; \
for hello in $(srcdir)/hellos/*; do \
if test -f $$hello; then \
cp -p $$hello $(distdir)/hellos; \
fi \
done \
fi
|