diff options
author | Alexander Færøy <ahf@0x90.dk> | 2015-01-04 01:57:21 +0100 |
---|---|---|
committer | Alexander Færøy <ahf@irssi.org> | 2018-02-26 23:32:57 +0100 |
commit | 016b42baea9d7dcd2a284f873246c06259c560dd (patch) | |
tree | 8c5382398598851bd23b8ca3d439d580f224d684 /src/otr/Makefile.am | |
parent | ad4324d24210f30646575b8bcbae8b50d2149224 (diff) | |
download | irssi-016b42baea9d7dcd2a284f873246c06259c560dd.zip |
Add OTR support.
This patch adds support for the OTR protocol to irssi. This is an import
of the external irssi-otr project that we are now taking over
maintership for.
Major thanks to the original authors of Irssi-OTR: Uli Meis and David
Goulet. Thanks to the OTR community in #OTR on OFTC, thanks to everyone
who have helped testing the patches and submitted UI suggestions.
Diffstat (limited to 'src/otr/Makefile.am')
-rw-r--r-- | src/otr/Makefile.am | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/otr/Makefile.am b/src/otr/Makefile.am new file mode 100644 index 00000000..3b991839 --- /dev/null +++ b/src/otr/Makefile.am @@ -0,0 +1,42 @@ +moduledir = $(libdir)/irssi/modules + +module_LTLIBRARIES = $(otr_module_lib) +noinst_LTLIBRARIES = $(otr_static_lib) + +EXTRA_LTLIBRARIES = \ + libotr_core.la \ + libotr_core_static.la + +AM_CPPFLAGS = \ + -I$(top_srcdir)/src \ + -I$(top_srcdir)/src/core/ \ + -I$(top_srcdir)/src/irc/core/ \ + -I$(top_srcdir)/src/fe-common/core/ \ + -I$(top_srcdir)/src/fe-text/ \ + $(GLIB_CFLAGS) \ + $(OTR_CFLAGS) + +libotr_core_la_LDFLAGS = -module -avoid-version -rpath $(moduledir) +libotr_core_la_LIBADD = $(OTR_LDFLAGS) + +otr_sources = \ + key.c \ + module.c \ + otr-formats.c \ + otr-ops.c \ + otr-fe.c \ + otr.c + +libotr_core_la_SOURCES = \ + $(otr_sources) + +libotr_core_static_la_SOURCES = \ + $(otr_sources) + +noinst_HEADERS = \ + irssi-otr.h \ + key.h \ + module.h \ + otr-formats.h \ + otr-fe.h \ + otr.h |