diff options
Diffstat (limited to 'kopete/protocols/groupwise/libgroupwise/Makefile.am')
-rw-r--r-- | kopete/protocols/groupwise/libgroupwise/Makefile.am | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/kopete/protocols/groupwise/libgroupwise/Makefile.am b/kopete/protocols/groupwise/libgroupwise/Makefile.am new file mode 100644 index 00000000..2df23a01 --- /dev/null +++ b/kopete/protocols/groupwise/libgroupwise/Makefile.am @@ -0,0 +1,40 @@ +INCLUDES = -I$(top_srcdir)/kopete/protocols/groupwise/libgroupwise/qca/src \ + -I$(top_srcdir)/kopete/protocols/groupwise \ + $(all_includes) +METASOURCES = AUTO + +AM_CFLAGS = -DUSE_TLSHANDLER + +CLEANFILES = securestream.moc + +SUBDIRS = qca tasks + +KDE_OPTIONS = nofinal + +noinst_HEADERS = connector.h tlshandler.h qcatlshandler.h bytestream.h \ + gwclientstream.h securestream.h stream.h coreprotocol.h gwfield.h gwerror.h \ + usertransfer.h eventtransfer.h transfer.h request.h requestfactory.h client.h task.h \ + safedelete.h response.h rtf2html.h userdetailsmanager.h eventprotocol.h \ + inputprotocolbase.h responseprotocol.h privacymanager.h gwchatrooms.h chatroommanager.h + +noinst_LTLIBRARIES = libgroupwise.la libgwtest.la +libgroupwise_la_COMPILE_FIRST = securestream.moc +libgroupwise_la_SOURCES = bytestream.cpp chatroommanager.cpp client.cpp \ + connector.cpp coreprotocol.cpp eventprotocol.cpp eventtransfer.cpp gwclientstream.cpp \ + gwerror.cpp gwfield.cpp gwglobal.cpp inputprotocolbase.cpp privacymanager.cpp \ + qcatlshandler.cpp request.cpp requestfactory.cpp response.cpp responseprotocol.cpp rtf.cc \ + safedelete.cpp securestream.cpp stream.cpp task.cpp tlshandler.cpp transfer.cpp \ + transferbase.cpp userdetailsmanager.cpp usertransfer.cpp +libgroupwise_la_LDFLAGS = -no-undefined $(all_libraries) +libgroupwise_la_LIBADD = tasks/libgroupwise_tasks.la -lqt-mt qca/src/libqca.la + +tests_COMPILE_FIRST = libgroupwise.la libgwtest.la + +libgwtest_la_SOURCES = coreprotocol.cpp eventtransfer.cpp \ + gwfield.cpp request.cpp requestfactory.cpp transfer.cpp usertransfer.cpp \ + client.cpp task.cpp safedelete.cpp gwclientstream.cpp qcatlshandler.cpp \ + stream.cpp tlshandler.cpp response.cpp connector.cpp securestream.cpp \ + bytestream.cpp +libgwtest_la_LDFLAGS = $(all_libraries) -no-undefined +libgwtest_la_LIBADD = qca/src/libqca.la \ + $(top_builddir)/kopete/protocols/groupwise/libgroupwise/tasks/libgroupwise_tasks.la -lqt-mt |