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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
EXTRA_DIST = \
examples/example.get examples/example.route examples/masqmail.conf \
docs/README docs/man/m*.[0-9] \
suse/masqmail suse/masqmail.spec suse/masqmail.spec.in \
redhat/masqmail redhat/masqmail.spec redhat/masqmail.spec.in \
tpl/failmsg.tpl tpl/failmsg.tpl.de tpl/failmsg.tpl.fr tpl/failmsg.tpl.it \
tpl/warnmsg.tpl tpl/warnmsg.tpl.de tpl/warnmsg.tpl.fr \
INSTALL.agenda INSTALL.ipaq agenda-config.site
SUBDIRS = src tests docs debian
install-data-local: log_dir spool_dir uid_bit conf_dir tpl_dir
conf_dir: $(DESTDIR)@with_confdir@
$(DESTDIR)@with_confdir@:
install -d $(DESTDIR)@with_confdir@
tpl_dir: $(DESTDIR)@datadir@/tpl
$(DESTDIR)@datadir@/tpl: conf_dir
install -d $(DESTDIR)@datadir@/masqmail/tpl
install -m 644 tpl/failmsg.tpl $(DESTDIR)@datadir@/masqmail/tpl
install -m 644 tpl/failmsg.tpl.{de,fr,it} $(DESTDIR)@datadir@/masqmail/tpl
install -m 644 tpl/warnmsg.tpl $(DESTDIR)@datadir@/masqmail/tpl
install -m 644 tpl/warnmsg.tpl.{de,fr} $(DESTDIR)@datadir@/masqmail/tpl
log_dir: $(DESTDIR)@with_logdir@
spool_dir: $(DESTDIR)@with_spooldir@
uid_bit: $(DESTDIR)@prefix@/sbin/masqmail
chmod u+s $(DESTDIR)@prefix@/sbin/masqmail
$(DESTDIR)@with_logdir@:
[ -d `dirname $(DESTDIR)@with_logdir@` ] || \
install -d `dirname $(DESTDIR)@with_logdir@`
install -d -o @with_user@ -g @with_group@ $(DESTDIR)@with_logdir@
$(DESTDIR)@with_spooldir@:
[ -d `dirname $(DESTDIR)@with_spooldir@` ] || \
install -d `dirname $(DESTDIR)@with_spooldir@`
install -d -o @with_user@ -g @with_group@ $(DESTDIR)@with_spooldir@
install -d -o @with_user@ -g @with_group@ $(DESTDIR)@with_spooldir@/lock
install -d -o @with_user@ -g @with_group@ $(DESTDIR)@with_spooldir@/input
install -d -o @with_user@ -g @with_group@ $(DESTDIR)@with_spooldir@/popuidl
|