-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 @@ NODIST_HEADERS_ = \ opkele/acconfig.h \ opkele/tr1-mem.h nobase_include_HEADERS = \ opkele/opkele-config.h \ opkele/types.h \ opkele/association.h \ opkele/exception.h \ opkele/extension.h \ opkele/sreg.h \ opkele/extension_chain.h \ opkele/uris.h \ opkele/basic_rp.h opkele/prequeue_rp.h \ opkele/iterator.h \ opkele/basic_op.h opkele/verify_op.h \ opkele/util.h \ + opkele/ax.h opkele/oauth_ext.h \ ${NODIST_HEADERS_} noinst_HEADERS = \ opkele/data.h \ opkele/curl.h opkele/expat.h opkele/tidy.h \ opkele/util-internal.h \ opkele/debug.h \ opkele/discovery.h dist-hook: 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 @@ lib_LTLIBRARIES = libopkele.la AM_CPPFLAGS = ${CPPFLAGS_DEBUG} DEFAULT_INCLUDES = -I${top_builddir} INCLUDES = \ -I${top_builddir}/include/ -I${top_srcdir}/include/ \ ${KONFORKA_CFLAGS} \ ${OPENSSL_CFLAGS} \ ${LIBCURL_CPPFLAGS} \ ${EXPAT_CFLAGS} ${TIDY_CFLAGS} libopkele_la_LIBADD = \ ${LIBCURL} \ ${EXPAT_LIBS} \ ${OPENSSL_LIBS} \ ${KONFORKA_LIBS} ${TIDY_LIBS} libopkele_la_SOURCES = \ params.cc \ util.cc \ secret.cc \ data.cc \ exception.cc \ extension.cc \ sreg.cc \ extension_chain.cc \ curl.cc expat.cc \ discovery.cc \ basic_rp.cc prequeue_rp.cc \ fields.cc message.cc \ - basic_op.cc verify_op.cc + basic_op.cc verify_op.cc \ + ax.cc oauth_ext.cc libopkele_la_LDFLAGS = \ -version-info 3:0:0 |