-rw-r--r-- | include/Makefile.am | 1 | ||||
-rw-r--r-- | lib/Makefile.am | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/Makefile.am b/include/Makefile.am index 4299156..b78fd8e 100644 --- a/include/Makefile.am +++ b/include/Makefile.am | |||
@@ -1,28 +1,29 @@ | |||
1 | NODIST_HEADERS_ = \ | 1 | NODIST_HEADERS_ = \ |
2 | opkele/acconfig.h \ | 2 | opkele/acconfig.h \ |
3 | opkele/tr1-mem.h | 3 | opkele/tr1-mem.h |
4 | 4 | ||
5 | nobase_include_HEADERS = \ | 5 | nobase_include_HEADERS = \ |
6 | opkele/opkele-config.h \ | 6 | opkele/opkele-config.h \ |
7 | opkele/types.h \ | 7 | opkele/types.h \ |
8 | opkele/association.h \ | 8 | opkele/association.h \ |
9 | opkele/exception.h \ | 9 | opkele/exception.h \ |
10 | opkele/extension.h \ | 10 | opkele/extension.h \ |
11 | opkele/sreg.h \ | 11 | opkele/sreg.h \ |
12 | opkele/extension_chain.h \ | 12 | opkele/extension_chain.h \ |
13 | opkele/uris.h \ | 13 | opkele/uris.h \ |
14 | opkele/basic_rp.h opkele/prequeue_rp.h \ | 14 | opkele/basic_rp.h opkele/prequeue_rp.h \ |
15 | opkele/iterator.h \ | 15 | opkele/iterator.h \ |
16 | opkele/basic_op.h opkele/verify_op.h \ | 16 | opkele/basic_op.h opkele/verify_op.h \ |
17 | opkele/util.h \ | 17 | opkele/util.h \ |
18 | opkele/ax.h opkele/oauth_ext.h \ | ||
18 | ${NODIST_HEADERS_} | 19 | ${NODIST_HEADERS_} |
19 | 20 | ||
20 | noinst_HEADERS = \ | 21 | noinst_HEADERS = \ |
21 | opkele/data.h \ | 22 | opkele/data.h \ |
22 | opkele/curl.h opkele/expat.h opkele/tidy.h \ | 23 | opkele/curl.h opkele/expat.h opkele/tidy.h \ |
23 | opkele/util-internal.h \ | 24 | opkele/util-internal.h \ |
24 | opkele/debug.h \ | 25 | opkele/debug.h \ |
25 | opkele/discovery.h | 26 | opkele/discovery.h |
26 | 27 | ||
27 | dist-hook: | 28 | dist-hook: |
28 | rm -f $(addprefix ${distdir}/,${NODIST_HEADERS_}) | 29 | rm -f $(addprefix ${distdir}/,${NODIST_HEADERS_}) |
diff --git a/lib/Makefile.am b/lib/Makefile.am index 8610597..5fc1efa 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am | |||
@@ -1,32 +1,33 @@ | |||
1 | lib_LTLIBRARIES = libopkele.la | 1 | lib_LTLIBRARIES = libopkele.la |
2 | 2 | ||
3 | AM_CPPFLAGS = ${CPPFLAGS_DEBUG} | 3 | AM_CPPFLAGS = ${CPPFLAGS_DEBUG} |
4 | DEFAULT_INCLUDES = -I${top_builddir} | 4 | DEFAULT_INCLUDES = -I${top_builddir} |
5 | INCLUDES = \ | 5 | INCLUDES = \ |
6 | -I${top_builddir}/include/ -I${top_srcdir}/include/ \ | 6 | -I${top_builddir}/include/ -I${top_srcdir}/include/ \ |
7 | ${KONFORKA_CFLAGS} \ | 7 | ${KONFORKA_CFLAGS} \ |
8 | ${OPENSSL_CFLAGS} \ | 8 | ${OPENSSL_CFLAGS} \ |
9 | ${LIBCURL_CPPFLAGS} \ | 9 | ${LIBCURL_CPPFLAGS} \ |
10 | ${EXPAT_CFLAGS} ${TIDY_CFLAGS} | 10 | ${EXPAT_CFLAGS} ${TIDY_CFLAGS} |
11 | libopkele_la_LIBADD = \ | 11 | libopkele_la_LIBADD = \ |
12 | ${LIBCURL} \ | 12 | ${LIBCURL} \ |
13 | ${EXPAT_LIBS} \ | 13 | ${EXPAT_LIBS} \ |
14 | ${OPENSSL_LIBS} \ | 14 | ${OPENSSL_LIBS} \ |
15 | ${KONFORKA_LIBS} ${TIDY_LIBS} | 15 | ${KONFORKA_LIBS} ${TIDY_LIBS} |
16 | 16 | ||
17 | libopkele_la_SOURCES = \ | 17 | libopkele_la_SOURCES = \ |
18 | params.cc \ | 18 | params.cc \ |
19 | util.cc \ | 19 | util.cc \ |
20 | secret.cc \ | 20 | secret.cc \ |
21 | data.cc \ | 21 | data.cc \ |
22 | exception.cc \ | 22 | exception.cc \ |
23 | extension.cc \ | 23 | extension.cc \ |
24 | sreg.cc \ | 24 | sreg.cc \ |
25 | extension_chain.cc \ | 25 | extension_chain.cc \ |
26 | curl.cc expat.cc \ | 26 | curl.cc expat.cc \ |
27 | discovery.cc \ | 27 | discovery.cc \ |
28 | basic_rp.cc prequeue_rp.cc \ | 28 | basic_rp.cc prequeue_rp.cc \ |
29 | fields.cc message.cc \ | 29 | fields.cc message.cc \ |
30 | basic_op.cc verify_op.cc | 30 | basic_op.cc verify_op.cc \ |
31 | ax.cc oauth_ext.cc | ||
31 | libopkele_la_LDFLAGS = \ | 32 | libopkele_la_LDFLAGS = \ |
32 | -version-info 3:0:0 | 33 | -version-info 3:0:0 |