diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Makefile.am | 6 | ||||
-rw-r--r-- | plugins/sasl/Makefile.am | 10 |
2 files changed, 15 insertions, 1 deletions
diff --git a/plugins/Makefile.am b/plugins/Makefile.am index d90f813a..dd33d8c7 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am @@ -17,5 +17,9 @@ if DO_TCL tcldir = tcl endif +if DO_SASL +sasldir = sasl +endif + #SUBDIRS = . $(pythondir) $(perldir) mailcheck xdcc -SUBDIRS = . $(pythondir) $(perldir) $(tcldir) +SUBDIRS = . $(pythondir) $(perldir) $(tcldir) $(sasldir) 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)/.. + |