diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Makefile.am | 6 | ||||
-rw-r--r-- | plugins/doat/Makefile.am | 10 |
2 files changed, 15 insertions, 1 deletions
diff --git a/plugins/Makefile.am b/plugins/Makefile.am index dd33d8c7..4ac35bce 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am @@ -21,5 +21,9 @@ if DO_SASL sasldir = sasl endif +if DO_DOAT +doatdir = doat +endif + #SUBDIRS = . $(pythondir) $(perldir) mailcheck xdcc -SUBDIRS = . $(pythondir) $(perldir) $(tcldir) $(sasldir) +SUBDIRS = . $(pythondir) $(perldir) $(tcldir) $(sasldir) $(doatdir) diff --git a/plugins/doat/Makefile.am b/plugins/doat/Makefile.am new file mode 100644 index 00000000..8be75450 --- /dev/null +++ b/plugins/doat/Makefile.am @@ -0,0 +1,10 @@ +EXTRA_DIST = + +libdir = $(hexchatlibdir)/plugins + +lib_LTLIBRARIES = doat.la +doat_la_SOURCES = doat.c +doat_la_LDFLAGS = -avoid-version -module +doat_la_LIBADD = +INCLUDES = $(COMMON_CFLAGS) -I$(srcdir)/.. + |