|
0
|
1 |
sbin_PROGRAMS = vmailmgrd
|
|
|
2 |
|
|
|
3 |
noinst_PODS = vmailmgrd.pod
|
|
|
4 |
noinst_HTMLS = $(noinst_PODS:.pod=.html)
|
|
|
5 |
man_MANS = $(noinst_PODS:.pod=.8)
|
|
|
6 |
|
|
|
7 |
CLEANFILES = $(man_MANS) $(noinst_HTMLS) $(noinst_PODS) \
|
|
|
8 |
pod2html-dircache pod2html-itemcache
|
|
|
9 |
EXTRA_DIST = $(man_MANS) $(noinst_HTMLS) $(noinst_PODS)
|
|
|
10 |
|
|
|
11 |
all: docs
|
|
|
12 |
|
|
|
13 |
docs: $(noinst_HTMLS) $(noinst_TXTS)
|
|
|
14 |
|
|
|
15 |
dist-hook:
|
|
|
16 |
touch $(distdir)/*.html $(distdir)/*.[123456789]
|
|
|
17 |
|
|
2
|
18 |
vmailmgrd.pod: main.cc ../configure.in ../lib/cli++/cli++topod.pl
|
|
|
19 |
perl ../lib/cli++/cli++topod.pl $< >$@
|
|
0
|
20 |
%.8: %.pod ../configure.in; $(POD2MAN) --section=8 $< >$@
|
|
|
21 |
%.html: %.pod; $(POD2HTML) $< >$@
|
|
|
22 |
|
|
|
23 |
INCLUDES = -I../lib
|
|
|
24 |
|
|
|
25 |
vmailmgrd_SOURCES = daemon.h \
|
|
2
|
26 |
adduser.cc \
|
|
0
|
27 |
autoresponse.cc \
|
|
|
28 |
chattr.cc \
|
|
|
29 |
check.cc \
|
|
|
30 |
command.h command.cc \
|
|
|
31 |
deluser.cc \
|
|
|
32 |
dispatch.cc \
|
|
|
33 |
listdomain.cc \
|
|
|
34 |
log.h log.cc \
|
|
|
35 |
lookup.cc \
|
|
|
36 |
main.cc \
|
|
2
|
37 |
stat.cc \
|
|
0
|
38 |
state.h state.cc
|
|
2
|
39 |
vmailmgrd_LDADD = ../lib/libvmailmgr.a ../lib/cli++/libcli++.a
|