0
|
1 EXTRA_DIST = \
|
|
2 examples/example.get examples/example.route examples/masqmail.conf \
|
|
3 docs/README docs/man/m*.[0-9] \
|
|
4 suse/masqmail suse/masqmail.spec suse/masqmail.spec.in \
|
|
5 redhat/masqmail redhat/masqmail.spec redhat/masqmail.spec.in \
|
|
6 tpl/failmsg.tpl tpl/failmsg.tpl.de tpl/failmsg.tpl.fr tpl/failmsg.tpl.it \
|
|
7 tpl/warnmsg.tpl tpl/warnmsg.tpl.de tpl/warnmsg.tpl.fr \
|
|
8 INSTALL.agenda INSTALL.ipaq agenda-config.site
|
|
9
|
|
10 SUBDIRS = src tests docs debian
|
|
11
|
|
12 install-data-local: log_dir spool_dir uid_bit conf_dir tpl_dir run_dir
|
|
13
|
|
14 conf_dir: $(DESTDIR)@with_confdir@
|
|
15
|
|
16 $(DESTDIR)@with_confdir@:
|
|
17 install -d $(DESTDIR)@with_confdir@
|
|
18
|
|
19 tpl_dir: $(DESTDIR)@datadir@/tpl
|
|
20
|
|
21 $(DESTDIR)@datadir@/tpl: conf_dir
|
|
22 install -d $(DESTDIR)@datadir@/masqmail/tpl
|
|
23 install -m 644 tpl/failmsg.tpl $(DESTDIR)@datadir@/masqmail/tpl
|
1
|
24 install -m 644 tpl/failmsg.tpl.* $(DESTDIR)@datadir@/masqmail/tpl
|
0
|
25 install -m 644 tpl/warnmsg.tpl $(DESTDIR)@datadir@/masqmail/tpl
|
1
|
26 install -m 644 tpl/warnmsg.tpl.* $(DESTDIR)@datadir@/masqmail/tpl
|
0
|
27
|
|
28 log_dir: $(DESTDIR)@with_logdir@
|
|
29
|
|
30 spool_dir: $(DESTDIR)@with_spooldir@
|
|
31
|
|
32 uid_bit: $(DESTDIR)@prefix@/sbin/masqmail
|
|
33 chmod u+s $(DESTDIR)@prefix@/sbin/masqmail
|
|
34
|
|
35 run_dir:
|
|
36 install -d -o @with_user@ -g @with_group@ $(DESTDIR)/var/run/masqmail
|
|
37
|
|
38 $(DESTDIR)@with_logdir@:
|
|
39 [ -d `dirname $(DESTDIR)@with_logdir@` ] || \
|
|
40 install -d `dirname $(DESTDIR)@with_logdir@`
|
|
41 install -d -o @with_user@ -g @with_group@ $(DESTDIR)@with_logdir@
|
|
42
|
|
43 $(DESTDIR)@with_spooldir@:
|
|
44 [ -d `dirname $(DESTDIR)@with_spooldir@` ] || \
|
|
45 install -d `dirname $(DESTDIR)@with_spooldir@`
|
|
46 install -d -o @with_user@ -g @with_group@ $(DESTDIR)@with_spooldir@
|
|
47 install -d -o @with_user@ -g @with_group@ $(DESTDIR)@with_spooldir@/lock
|
|
48 install -d -o @with_user@ -g @with_group@ $(DESTDIR)@with_spooldir@/input
|
|
49 install -d -o @with_user@ -g @with_group@ $(DESTDIR)@with_spooldir@/popuidl
|
|
50
|