blob: 458b61274cd2004ad31956322f9c3ce5776b0a83 (
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
|
AM_CPPFLAGS = \
-I$(top_srcdir)/src/lib \
-I$(top_srcdir)/src/lib-test \
-I$(top_srcdir)/src/lib-http \
-I$(top_srcdir)/src/lib-dcrypt \
-I$(top_srcdir)/src/lib-dict \
-I$(top_srcdir)/src/lib-settings
noinst_LTLIBRARIES=liboauth2.la
pkginc_libdir=$(pkgincludedir)
pkginc_lib_HEADERS = \
oauth2.h
noinst_HEADERS = \
oauth2-private.h
liboauth2_la_SOURCES = \
oauth2.c \
oauth2-request.c \
oauth2-jwt.c \
oauth2-key-cache.c
test_programs = \
test-oauth2-json \
test-oauth2-jwt
noinst_PROGRAMS = $(test_programs)
test_libs = \
$(noinst_LTLIBRARIES) \
../lib-dcrypt/libdcrypt.la \
../lib-http/libhttp.la \
../lib-dns/libdns.la \
../lib-ssl-iostream/libssl_iostream.la \
../lib-master/libmaster.la \
../lib-auth/libauth.la \
../lib-dict/libdict.la \
../lib-settings/libsettings.la \
../lib-test/libtest.la \
../lib/liblib.la \
$(MODULE_LIBS)
test_deps = \
$(noinst_LTLIBRARIES) \
../lib-dcrypt/libdcrypt.la \
../lib-http/libhttp.la \
../lib-dns/libdns.la \
../lib-ssl-iostream/libssl_iostream.la \
../lib-master/libmaster.la \
../lib-auth/libauth.la \
../lib-dict/libdict.la \
../lib-settings/libsettings.la \
../lib-test/libtest.la \
../lib/liblib.la
test_oauth2_json_SOURCES = test-oauth2-json.c
test_oauth2_json_LDADD = $(test_libs)
test_oauth2_json_DEPENDENCIES = $(test_deps)
test_oauth2_jwt_SOURCES = test-oauth2-jwt.c
test_oauth2_jwt_LDADD = $(test_libs)
if HAVE_WHOLE_ARCHIVE
test_oauth2_jwt_LDFLAGS = -Wl,$(LD_WHOLE_ARCHIVE),../lib-ssl-iostream/.libs/libssl_iostream.a,$(LD_NO_WHOLE_ARCHIVE)
endif
test_oauth2_jwt_DEPENDENCIES = $(test_deps)
check-local:
for bin in $(test_programs); do \
if ! $(RUN_TEST) ./$$bin; then exit 1; fi; \
done
|