masqmail

view Makefile.am @ 422:bdbedce60247

Remove `input' dir in spool dir. Spooled files are in spool dir directly now. There's no more need to have any sub directories in the spool dir at all.
author markus schnalke <meillo@marmaro.de>
date Wed, 30 May 2012 10:27:10 +0200
parents f37384470855
children a19e47ebbb33
line source
1 EXTRA_DIST = examples docs man tpl devel
3 SUBDIRS = src man
5 install-data-local: log_dir spool_dir uid_bit conf_dir tpl_dir doc_dir rmail
7 uninstall-local: rm-rmail rm-doc_dir rm-tpl_dir rm-conf_dir rm-spool_dir rm-log_dir
10 conf_dir:
11 install -d $(DESTDIR)@with_confdir@
13 rm-conf_dir:
14 rmdir $(DESTDIR)@with_confdir@ # removes only if empty
17 tpl_dir:
18 install -d $(DESTDIR)@datadir@/masqmail/tpl
19 cp tpl/* $(DESTDIR)@datadir@/masqmail/tpl
20 chmod 644 $(DESTDIR)@datadir@/masqmail/tpl/*
22 rm-tpl_dir:
23 rm -rf $(DESTDIR)@datadir@/masqmail/
26 doc_dir:
27 install -d $(DESTDIR)@docdir@
28 cp -r docs $(DESTDIR)@docdir@
29 cp -r examples $(DESTDIR)@docdir@
30 cp ChangeLog NEWS AUTHORS COPYING README TODO INSTALL THANKS $(DESTDIR)@docdir@
32 rm-doc_dir:
33 cd $(DESTDIR)@docdir@ && ( \
34 rm -rf docs examples ; \
35 rm -f ChangeLog NEWS AUTHORS COPYING README TODO INSTALL THANKS ; \
36 )
37 rmdir $(DESTDIR)@docdir@
40 log_dir:
41 install -d -o @with_user@ -g @with_group@ $(DESTDIR)@with_logdir@
43 rm-log_dir:
44 rmdir $(DESTDIR)@with_logdir@ # removes only if empty
47 spool_dir:
48 install -d -o @with_user@ -g @with_group@ $(DESTDIR)@with_spooldir@
50 rm-spool_dir:
51 : # removal fails if the dirs are non-empty
52 : # this prevents losing spooled files
53 rmdir $(DESTDIR)@with_spooldir@
55 rmail:
56 [ -d "$(DESTDIR)@prefix@/sbin" ] || mkdir -p "$(DESTDIR)@prefix@/sbin"
57 sed '/^SENDMAIL/s,/usr/sbin/sendmail,$(DESTDIR)@prefix@/sbin/masqmail,'\
58 admin/rmail >$(DESTDIR)@prefix@/sbin/rmail
59 chmod 755 $(DESTDIR)@prefix@/sbin/rmail
61 rm-rmail:
62 rm -f $(DESTDIR)@prefix@/sbin/rmail
65 uid_bit:
66 chmod u+s $(DESTDIR)@prefix@/sbin/masqmail