blob: ca0c3938b7c5061902e1963093786c4c1fa569a6 (
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
|
pcfiles = \
gnunetats.pc \
gnunetarm.pc \
gnunetblock.pc \
gnunetcore.pc \
gnunetdatacache.pc \
gnunetdatastore.pc \
gnunetdht.pc \
gnunetdns.pc \
gnunetdnsparser.pc \
gnunetdv.pc \
gnunetfragmentation.pc \
gnunetfs.pc \
gnunetgns.pc \
gnunethello.pc \
gnunetlockmanager.pc \
gnunetmesh.pc \
gnunetmysql.pc \
gnunetnamestore.pc \
gnunetnat.pc \
gnunetnse.pc \
gnunetpeerinfo.pc \
gnunetpostgres.pc \
gnunetregex.pc \
gnunetstatistics.pc \
gnunetstream.pc \
gnunettestbed.pc \
gnunettesting.pc \
gnunettransport.pc \
gnunettun.pc \
gnunetutil.pc \
gnunetvpn.pc
all-local: $(pcfiles)
cp_verbose = $(cp_verbose_$(V))
cp_verbose_ = $(cp_verbose_$(AM_DEFAULT_VERBOSITY))
cp_verbose_0 = @echo " CP $@";
%.pc: %.pc
$(cp_verbose_0)cp $< $@
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = $(pcfiles)
EXTRA_DIST = \
gnunetarm.pc.in \
gnunetats.pc.in \
gnunetblock.pc.in \
gnunetcore.pc.in \
gnunetdatacache.pc.in \
gnunetdatastore.pc.in \
gnunetdht.pc.in \
gnunetdns.pc.in \
gnunetdnsparser.pc.in \
gnunetdv.pc.in \
gnunetfragmentation.pc.in \
gnunetfs.pc.in \
gnunetgns.pc.in \
gnunethello.pc.in \
gnunetlockmanager.pc.in \
gnunetmesh.pc.in \
gnunetmysql.pc.in \
gnunetnamestore.pc.in \
gnunetnat.pc.in \
gnunetnse.pc.in \
gnunetpeerinfo.pc.in \
gnunetpostgres.pc.in \
gnunetregex.pc.in \
gnunetstatistics.pc.in \
gnunetstream.pc.in \
gnunettestbed.pc.in \
gnunettesting.pc.in \
gnunettransport.pc.in \
gnunettun.pc.in \
gnunetutil.pc.in \
gnunetvpn.pc.in
CLEANFILES = $(pcfiles)
INCLUDES = -I$(top_srcdir)/src/include
|