summaryrefslogtreecommitdiff
path: root/plugin/Makefile.am
blob: 900e5a2bf85a4d958d64facc7835617bce07641b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

INCLUDES = -DCONF_PREFIX=\"$(sysconfdir)\"

moduledir = $(libdir)
module_LTLIBRARIES = libdelegateldap.la

libdelegateldap_la_LDFLAGS = -module -avoid-version
libdelegateldap_la_SOURCES = delegateldap.c

delegateldap.sasl: delegateldap.sasl.in Makefile
	@sed -e "s|\@LIBDIR\@|$(libdir)|" $< > $@
delegateldap.README: delegateldap.README.in Makefile
	@sed -e "s|\@LIBDIR\@|$(libdir)|" $< > $@

sasldir = $(libdir)/sasl2/
sasl_DATA = \
	delegateldap.sasl \
	delegateldap.README

EXTRA_DIST = \
	delegateldap.sasl.in \
	delegateldap.README.in

CLEANFILES = \
	delegateldap.sasl \
	delegateldap.README