author | Michael Krelin <hacker@klever.net> | 2005-07-19 13:08:32 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2005-07-19 13:08:32 (UTC) |
commit | 4c82851dd5d5644a89d4f269079bf901f763ee33 (patch) (side-by-side diff) | |
tree | b64c8b3c9a1be88e2a9c3f762272e0b4509ba7d9 /lib/Makefile.am | |
parent | 907343b0c973eb295bec8795902a6d49744e9174 (diff) | |
download | libopkele-4c82851dd5d5644a89d4f269079bf901f763ee33.zip libopkele-4c82851dd5d5644a89d4f269079bf901f763ee33.tar.gz libopkele-4c82851dd5d5644a89d4f269079bf901f763ee33.tar.bz2 |
initial commit of libopkele - OpenID support library
-rw-r--r-- | lib/Makefile.am | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am new file mode 100644 index 0000000..6f3f9f3 --- a/dev/null +++ b/lib/Makefile.am @@ -0,0 +1,24 @@ +lib_LTLIBRARIES = libopkele.la + +INCLUDES = \ + -I${top_srcdir}/include/ \ + ${KONFORKA_CFLAGS} \ + ${OPENSSL_CFLAGS} \ + ${MIMETIC_CFLAGS} \ + ${LIBCURL_CPPFLAGS} \ + ${PCREPP_CFLAGS} +LDADD = \ + ${LIBCURL} \ + ${PCREPP_LIBS} \ + ${MIMETIC_LIBS} \ + ${OPENSSL_LIBS} \ + ${KONFORKA_LIBS} + +libopkele_la_SOURCES = \ + params.cc \ + util.cc \ + server.cc \ + secret.cc \ + data.cc \ + consumer.cc \ + exception.cc |