aboutsummaryrefslogtreecommitdiff
path: root/src/identity-provider/Makefile.am
blob: 1e0b82528dfced7b9234f6466d046669edda6a3f (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
# This Makefile.am is in the public domain
AM_CPPFLAGS = -I$(top_srcdir)/src/include

 plugindir = $(libdir)/gnunet

if MINGW
 WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
endif

if USE_COVERAGE
  AM_CFLAGS = --coverage -O0
  XLIB = -lgcov
endif

pkgcfgdir= $(pkgdatadir)/config.d/

libexecdir= $(pkglibdir)/libexec/

pkgcfg_DATA = \
  identity-provider.conf

plugin_LTLIBRARIES = \
  libgnunetidentityprovider.la \
	libgnunet_plugin_rest_identity_provider.la

bin_PROGRAMS = \
 gnunet-identity-token

libexec_PROGRAMS = \
 gnunet-service-identity-provider

gnunet_service_identity_provider_SOURCES = \
 gnunet-service-identity-provider.c \
 identity_token.c
gnunet_service_identity_provider_LDADD = \
 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
 $(top_builddir)/src/util/libgnunetutil.la \
 $(top_builddir)/src/namestore/libgnunetnamestore.la \
 $(top_builddir)/src/identity/libgnunetidentity.la \
 $(top_builddir)/src/statistics/libgnunetstatistics.la \
 $(top_builddir)/src/gns/libgnunetgns.la \
 $(GN_LIBINTL) \
 -ljansson

libgnunetidentityprovider_la_SOURCES = \
 identity_provider_api.c \
 identity_provider.h
libgnunetidentityprovider_la_LIBADD = \
  $(top_builddir)/src/util/libgnunetutil.la \
	$(GN_LIBINTL) $(XLIB)
libgnunetidentityprovider_la_LDFLAGS = \
	$(GN_LIB_LDFLAGS)  $(WINFLAGS) \
	-version-info 0:0:0

libgnunet_plugin_rest_identity_provider_la_SOURCES = \
  plugin_rest_identity_provider.c
libgnunet_plugin_rest_identity_provider_la_LIBADD = \
	$(top_builddir)/src/identity/libgnunetidentity.la \
	libgnunetidentityprovider.la \
	$(top_builddir)/src/rest/libgnunetrest.la \
	$(top_builddir)/src/namestore/libgnunetnamestore.la \
  $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) \
  $(LTLIBINTL) -ljansson -lmicrohttpd
libgnunet_plugin_rest_identity_provider_la_LDFLAGS = \
 $(GN_PLUGIN_LDFLAGS)


gnunet_identity_token_SOURCES = \
 gnunet-identity-token.c
gnunet_identity_token_LDADD = \
  $(top_builddir)/src/util/libgnunetutil.la \
  -ljansson -lmicrohttpd \
  $(GN_LIBINTL)