diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-07-17 19:19:48 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-07-17 19:19:48 +0200 |
commit | e5f4c4d217a35f5405dc1f2a6ff9f79e2ecad705 (patch) | |
tree | 60666a515fd60b1cf4125e362495eab84284f453 /plugins/sasl | |
parent | 6d55ce363b2533080ad689cc73204ebd556eaefa (diff) |
Add make support for SASL on Unix
Diffstat (limited to 'plugins/sasl')
-rw-r--r-- | plugins/sasl/Makefile.am | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/plugins/sasl/Makefile.am b/plugins/sasl/Makefile.am new file mode 100644 index 00000000..d6f74797 --- /dev/null +++ b/plugins/sasl/Makefile.am @@ -0,0 +1,10 @@ +EXTRA_DIST = + +libdir = $(hexchatlibdir)/plugins + +lib_LTLIBRARIES = sasl.la +sasl_la_SOURCES = sasl.c +sasl_la_LDFLAGS = -avoid-version -module +sasl_la_LIBADD = +INCLUDES = $(COMMON_CFLAGS) -I$(srcdir)/.. + |