aboutsummaryrefslogtreecommitdiff
path: root/src/namestore/Makefile.am
blob: 46faba7238cbef3711229b2b400f8813f23fef9a (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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
SUBDIRS = .

# we use libgnunetutil to load plugins, and it
# only looks in /gnunet, not /gnunet-gtk!
plugindir = $(libdir)/gnunet
pkgcfgdir= $(prefix)/share/gnunet/config.d/

AM_CPPFLAGS = \
  -I$(top_srcdir)/ \
  -I$(top_srcdir)/src/include

bin_PROGRAMS = gnunet-namestore-gtk

pkgcfg_DATA = \
  gnunet-namestore-gtk.conf

EXTRA_DIST = \
 $(pkgcfg_DATA)

gnunet_namestore_gtk_SOURCES = \
  gnunet-namestore-gtk.c \
  gnunet-namestore-gtk_edit.c
gnunet_namestore_gtk_LDADD = \
  $(top_builddir)/src/lib/libgnunetgtk.la \
  -lgmodule-2.0 \
  @GTK_LIBS@ @GNUNET_LIBS@ @GLADE_LIBS@ @QR_LIBS@ \
  $(WINLIBS) \
  -lgnunetutil -lgnunetgnsrecord -lgnunetnamestore -lgnunetdnsparser \
  -lgnunetidentity \
  $(INTLLIBS)
gnunet_namestore_gtk_CFLAGS = \
  @GTK_CFLAGS@ \
  @GNUNET_CFLAGS@ \
  @GLADE_CFLAGS@ \
  @QR_CFLAGS@
gnunet_namestore_gtk_LDFLAGS = \
  -export-dynamic


plugin_LTLIBRARIES = \
  libgnunet_plugin_gtk_namestore_a.la \
  libgnunet_plugin_gtk_namestore_aaaa.la \
  libgnunet_plugin_gtk_namestore_cname.la \
  libgnunet_plugin_gtk_namestore_gns2dns.la \
  libgnunet_plugin_gtk_namestore_leho.la \
  libgnunet_plugin_gtk_namestore_mx.la \
  libgnunet_plugin_gtk_namestore_phone.la \
  libgnunet_plugin_gtk_namestore_pkey.la \
  libgnunet_plugin_gtk_namestore_ptr.la \
  libgnunet_plugin_gtk_namestore_soa.la \
  libgnunet_plugin_gtk_namestore_txt.la \
  libgnunet_plugin_gtk_namestore_vpn.la

#  libgnunet_plugin_gtk_namestore_srv.la


libgnunet_plugin_gtk_namestore_a_la_SOURCES = \
  plugin_gtk_namestore_a.c
libgnunet_plugin_gtk_namestore_a_la_CFLAGS = \
  @GTK_CFLAGS@ \
  @GNUNET_CFLAGS@ \
  @GLADE_CFLAGS@
libgnunet_plugin_gtk_namestore_a_la_LIBADD = \
  @GNUNET_LIBS@ \
  -lgnunetutil
libgnunet_plugin_gtk_namestore_a_la_LDFLAGS = \
 $(GN_PLUGIN_LDFLAGS)

libgnunet_plugin_gtk_namestore_aaaa_la_SOURCES = \
  plugin_gtk_namestore_aaaa.c
libgnunet_plugin_gtk_namestore_aaaa_la_CFLAGS = \
  @GTK_CFLAGS@ \
  @GNUNET_CFLAGS@ \
  @GLADE_CFLAGS@
libgnunet_plugin_gtk_namestore_aaaa_la_LIBADD = \
  @GNUNET_LIBS@ \
  -lgnunetutil
libgnunet_plugin_gtk_namestore_aaaa_la_LDFLAGS = \
 $(GN_PLUGIN_LDFLAGS)

libgnunet_plugin_gtk_namestore_cname_la_SOURCES = \
  plugin_gtk_namestore_cname.c
libgnunet_plugin_gtk_namestore_cname_la_CFLAGS = \
  @GTK_CFLAGS@ \
  @GNUNET_CFLAGS@ \
  @GLADE_CFLAGS@
libgnunet_plugin_gtk_namestore_cname_la_LIBADD = \
  @GNUNET_LIBS@ \
  -lgnunetdnsparser \
  -lgnunetutil
libgnunet_plugin_gtk_namestore_cname_la_LDFLAGS = \
 $(GN_PLUGIN_LDFLAGS)

libgnunet_plugin_gtk_namestore_gns2dns_la_SOURCES = \
  plugin_gtk_namestore_gns2dns.c
libgnunet_plugin_gtk_namestore_gns2dns_la_CFLAGS = \
  @GTK_CFLAGS@ \
  @GNUNET_CFLAGS@ \
  @GLADE_CFLAGS@
libgnunet_plugin_gtk_namestore_gns2dns_la_LIBADD = \
  @GNUNET_LIBS@ \
  -lgnunetdnsparser \
  -lgnunetutil
libgnunet_plugin_gtk_namestore_gns2dns_la_LDFLAGS = \
 $(GN_PLUGIN_LDFLAGS)

libgnunet_plugin_gtk_namestore_leho_la_SOURCES = \
  plugin_gtk_namestore_leho.c
libgnunet_plugin_gtk_namestore_leho_la_CFLAGS = \
  @GTK_CFLAGS@ \
  @GNUNET_CFLAGS@ \
  @GLADE_CFLAGS@
libgnunet_plugin_gtk_namestore_leho_la_LIBADD = \
  @GNUNET_LIBS@ \
  -lgnunetdnsparser \
  -lgnunetutil
libgnunet_plugin_gtk_namestore_leho_la_LDFLAGS = \
 $(GN_PLUGIN_LDFLAGS)

libgnunet_plugin_gtk_namestore_mx_la_SOURCES = \
  plugin_gtk_namestore_mx.c
libgnunet_plugin_gtk_namestore_mx_la_CFLAGS = \
  @GTK_CFLAGS@ \
  @GNUNET_CFLAGS@ \
  @GLADE_CFLAGS@
libgnunet_plugin_gtk_namestore_mx_la_LIBADD = \
  @GNUNET_LIBS@ \
  -lgnunetdnsparser \
  -lgnunetutil
libgnunet_plugin_gtk_namestore_mx_la_LDFLAGS = \
 $(GN_PLUGIN_LDFLAGS)

libgnunet_plugin_gtk_namestore_phone_la_SOURCES = \
  plugin_gtk_namestore_phone.c
libgnunet_plugin_gtk_namestore_phone_la_CFLAGS = \
  @GTK_CFLAGS@ \
  @GNUNET_CFLAGS@ \
  @GLADE_CFLAGS@
libgnunet_plugin_gtk_namestore_phone_la_LIBADD = \
  @GNUNET_LIBS@ \
  -lgnunetutil
libgnunet_plugin_gtk_namestore_phone_la_LDFLAGS = \
 $(GN_PLUGIN_LDFLAGS)

libgnunet_plugin_gtk_namestore_pkey_la_SOURCES = \
  plugin_gtk_namestore_pkey.c
libgnunet_plugin_gtk_namestore_pkey_la_CFLAGS = \
  @GTK_CFLAGS@ \
  @GNUNET_CFLAGS@ \
  @GLADE_CFLAGS@
libgnunet_plugin_gtk_namestore_pkey_la_LIBADD = \
  @GNUNET_LIBS@ \
  -lgnunetutil
libgnunet_plugin_gtk_namestore_pkey_la_LDFLAGS = \
 $(GN_PLUGIN_LDFLAGS)

libgnunet_plugin_gtk_namestore_ptr_la_SOURCES = \
  plugin_gtk_namestore_ptr.c
libgnunet_plugin_gtk_namestore_ptr_la_CFLAGS = \
  @GTK_CFLAGS@ \
  @GNUNET_CFLAGS@ \
  @GLADE_CFLAGS@
libgnunet_plugin_gtk_namestore_ptr_la_LIBADD = \
  @GNUNET_LIBS@ \
  -lgnunetdnsparser \
  -lgnunetutil
libgnunet_plugin_gtk_namestore_ptr_la_LDFLAGS = \
 $(GN_PLUGIN_LDFLAGS)

libgnunet_plugin_gtk_namestore_soa_la_SOURCES = \
  plugin_gtk_namestore_soa.c
libgnunet_plugin_gtk_namestore_soa_la_CFLAGS = \
  @GTK_CFLAGS@ \
  @GNUNET_CFLAGS@ \
  @GLADE_CFLAGS@
libgnunet_plugin_gtk_namestore_soa_la_LIBADD = \
  @GNUNET_LIBS@ \
  -lgnunetdnsparser \
  -lgnunetutil
libgnunet_plugin_gtk_namestore_soa_la_LDFLAGS = \
 $(GN_PLUGIN_LDFLAGS)

#libgnunet_plugin_gtk_namestore_srv_la_SOURCES = \
#  plugin_gtk_namestore_srv.c
#libgnunet_plugin_gtk_namestore_srv_la_CFLAGS = \
#  @GTK_CFLAGS@ \
#  @GNUNET_CFLAGS@ \
#  @GLADE_CFLAGS@
#libgnunet_plugin_gtk_namestore_srv_la_LIBADD = \
#  @GNUNET_LIBS@ \
#  -lgnunetutil
#libgnunet_plugin_gtk_namestore_srv_la_LDFLAGS = \
# $(GN_PLUGIN_LDFLAGS)

libgnunet_plugin_gtk_namestore_txt_la_SOURCES = \
  plugin_gtk_namestore_txt.c
libgnunet_plugin_gtk_namestore_txt_la_CFLAGS = \
  @GTK_CFLAGS@ \
  @GNUNET_CFLAGS@ \
  @GLADE_CFLAGS@
libgnunet_plugin_gtk_namestore_txt_la_LIBADD = \
  @GNUNET_LIBS@ \
  -lgnunetutil
libgnunet_plugin_gtk_namestore_txt_la_LDFLAGS = \
 $(GN_PLUGIN_LDFLAGS)

libgnunet_plugin_gtk_namestore_vpn_la_SOURCES = \
  plugin_gtk_namestore_vpn.c
libgnunet_plugin_gtk_namestore_vpn_la_CFLAGS = \
  @GTK_CFLAGS@ \
  @GNUNET_CFLAGS@ \
  @GLADE_CFLAGS@
libgnunet_plugin_gtk_namestore_vpn_la_LIBADD = \
  @GNUNET_LIBS@ \
  -lgnunetutil
libgnunet_plugin_gtk_namestore_vpn_la_LDFLAGS = \
 $(GN_PLUGIN_LDFLAGS)