|
0
|
1 |
bin_PROGRAMS = checkvpw vauthenticate
|
|
|
2 |
authlib_PROGRAMS = authvmailmgr
|
|
|
3 |
authlibdir = ${prefix}/lib/courier-imap/libexec/authlib/
|
|
|
4 |
|
|
|
5 |
noinst_PODS = checkvpw.pod vauthenticate.pod
|
|
|
6 |
noinst_HTMLS = $(noinst_PODS:.pod=.html)
|
|
|
7 |
man_MANS = $(noinst_PODS:.pod=.1)
|
|
|
8 |
|
|
|
9 |
CLEANFILES = $(man_MANS) $(noinst_HTMLS) \
|
|
|
10 |
pod2html-dircache pod2html-itemcache
|
|
|
11 |
EXTRA_DIST = $(man_MANS) $(noinst_HTMLS) $(noinst_PODS)
|
|
|
12 |
|
|
|
13 |
all: docs
|
|
|
14 |
|
|
|
15 |
docs: $(noinst_HTMLS) $(man_MANS)
|
|
|
16 |
|
|
|
17 |
dist-hook:
|
|
|
18 |
touch $(distdir)/*.html $(distdir)/*.[123456789]
|
|
|
19 |
|
|
|
20 |
%.1: %.pod ../configure.in; $(POD2MAN) --section=1 $< >$@
|
|
|
21 |
%.html: %.pod; $(POD2HTML) $< >$@
|
|
|
22 |
|
|
|
23 |
INCLUDES = $(CIINCLUDES) -I../lib
|
|
|
24 |
|
|
|
25 |
checkvpw_SOURCES = checkvpw.cc authvlib.cc authvlib.h
|
|
|
26 |
checkvpw_LDADD = ../lib/libvmailmgr.a
|
|
|
27 |
|
|
|
28 |
authvmailmgr_SOURCES = authvmailmgr.cc authvlib.cc authvlib.h
|
|
|
29 |
authvmailmgr_LDADD = ../lib/libvmailmgr.a -L../lib/courier-authlib -lauthmod
|
|
|
30 |
|
|
|
31 |
vauthenticate_SOURCES = vauthenticate.cc authvlib.cc authvlib.h
|
|
|
32 |
vauthenticate_LDADD = ../lib/libvmailmgr.a
|