98 lines
2.6 KiB
Makefile
98 lines
2.6 KiB
Makefile
#
|
|
## Copyright (C) 2001-2019 Graeme Walker <graeme_walker@users.sourceforge.net>
|
|
##
|
|
## This program is free software: you can redistribute it and/or modify
|
|
## it under the terms of the GNU General Public License as published by
|
|
## the Free Software Foundation, either version 3 of the License, or
|
|
## (at your option) any later version.
|
|
##
|
|
## This program is distributed in the hope that it will be useful,
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
## GNU General Public License for more details.
|
|
##
|
|
## You should have received a copy of the GNU General Public License
|
|
## along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
example_scripts = \
|
|
emailrelay-bcc-check.pl \
|
|
emailrelay-multicast.sh \
|
|
emailrelay-rot13.pl \
|
|
emailrelay-sendmail.pl \
|
|
emailrelay-set-from.js \
|
|
emailrelay-set-from.pl
|
|
|
|
example_scripts_in = \
|
|
emailrelay-deliver.sh.in \
|
|
emailrelay-notify.sh.in \
|
|
emailrelay-resubmit.sh.in \
|
|
emailrelay-submit.sh.in \
|
|
emailrelay.sh.in
|
|
|
|
example_scripts_out = \
|
|
emailrelay-deliver.sh \
|
|
emailrelay-notify.sh \
|
|
emailrelay-resubmit.sh \
|
|
emailrelay-submit.sh \
|
|
emailrelay
|
|
|
|
init_scripts = \
|
|
emailrelay
|
|
|
|
work_scripts = \
|
|
doxygen.sh \
|
|
make-manifest.sh \
|
|
make-setup.sh
|
|
|
|
js_scripts = \
|
|
emailrelay-edit-content.js \
|
|
emailrelay-edit-envelope.js \
|
|
emailrelay-resubmit.js \
|
|
emailrelay-service-install.js
|
|
|
|
EXTRA_DIST = \
|
|
$(example_scripts) \
|
|
$(example_scripts_in) \
|
|
$(work_scripts) \
|
|
$(js_scripts)
|
|
|
|
noinst_SCRIPTS = \
|
|
$(work_scripts) \
|
|
$(js_scripts)
|
|
|
|
e_examples_DATA = \
|
|
$(example_scripts)
|
|
|
|
e_examples_SCRIPTS = \
|
|
$(example_scripts_out)
|
|
|
|
e_init_SCRIPTS = \
|
|
$(init_scripts)
|
|
|
|
CLEANFILES = \
|
|
$(example_scripts_out)
|
|
|
|
do_sed = sed -e "s%__SPOOL_DIR__%${e_spooldir}%g" -e "s%__SBIN_DIR__%${sbindir}%g" -e "s%__SYSCONF_DIR__%${e_sysconfdir}%g" -e "s%__LIBEXEC_DIR__%${e_libexecdir}%g" -e "s%__RUNDIR__%${e_rundir}%g"
|
|
|
|
emailrelay-deliver.sh: emailrelay-deliver.sh.in
|
|
$(do_sed) < $(srcdir)/emailrelay-deliver.sh.in > emailrelay-deliver.sh
|
|
chmod +x emailrelay-deliver.sh
|
|
|
|
emailrelay-notify.sh: emailrelay-notify.sh.in
|
|
$(do_sed) < $(srcdir)/emailrelay-notify.sh.in > emailrelay-notify.sh
|
|
chmod +x emailrelay-notify.sh
|
|
|
|
emailrelay-resubmit.sh: emailrelay-resubmit.sh.in
|
|
$(do_sed) < $(srcdir)/emailrelay-resubmit.sh.in > emailrelay-resubmit.sh
|
|
chmod +x emailrelay-resubmit.sh
|
|
|
|
emailrelay-submit.sh: emailrelay-submit.sh.in
|
|
$(do_sed) < $(srcdir)/emailrelay-submit.sh.in > emailrelay-submit.sh
|
|
chmod +x emailrelay-submit.sh
|
|
|
|
emailrelay: emailrelay.sh.in
|
|
$(do_sed) < $(srcdir)/emailrelay.sh.in > emailrelay
|
|
chmod +x emailrelay
|
|
|