emailrelay/bin/Makefile.am
Graeme Walker 2f62c8361e v2.3.1
2022-07-14 12:00:00 +00:00

111 lines
2.9 KiB
Makefile

#
## Copyright (C) 2001-2021 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_static = \
emailrelay-bcc-check.pl \
emailrelay-check-ipaddress.js \
emailrelay-check-ipaddress.pl \
emailrelay-ldap-verify.py \
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
example_scripts_out = \
emailrelay-deliver.sh \
emailrelay-notify.sh \
emailrelay-resubmit.sh \
emailrelay-submit.sh \
emailrelay
init_script_in = \
emailrelay.sh.in
init_script_out = \
emailrelay
work_scripts = \
doxygen.sh \
make-manifest.sh \
make-setup.sh \
make-format \
make2cmake \
make2cdb \
AutoMakeParser.pm \
CompilationDatabase.pm \
ConfigStatus.pm \
winbuild.pm
js_scripts = \
emailrelay-edit-content.js \
emailrelay-edit-envelope.js \
emailrelay-resubmit.js \
emailrelay-service-install.js
EXTRA_DIST = \
$(example_scripts_static) \
$(example_scripts_in) \
$(init_script_in) \
$(work_scripts) \
$(js_scripts)
noinst_SCRIPTS = \
$(work_scripts) \
$(js_scripts)
e_examples_DATA = \
$(example_scripts_static)
e_examples_SCRIPTS = \
$(example_scripts_out)
e_init_SCRIPTS = \
$(init_script_out)
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%__RUN_DIR__%${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