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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
#!/usr/bin/make -f
#------------------------------------------------------------------------------
# vim: syntax=make
#
# $Sendmail: Makefile,v @sm_version@ @sm_date@ @sm_time@ debian Exp $
#
# Copyright (c) 1998-@SM_CPYRT@ Richard Nelson. All Rights Reserved.
#
# @configure_input@
#
# Rules file for Sendmail @sm_version@@sm_revision@(@sm_version_math@)
# on @sm_dist_name@ @sm_dist_vers@
# via Debhelper V@DEBIAN_DH@
#
# Note: the .in file supports Sendmail @SM_MINVERS@ - @SM_MAXVERS@
# on Debian slink, potato, woody, testing, sid, ...
# but the generated file is customized to the version noted above.
#
# Richard Nelson <cowboy@debian.org> @sm_date@ @sm_time@ (@sm_utc@)
#------------------------------------------------------------------------------
#
# Shipped programs
#
dist_pkgdata_SCRIPTS = \
Parse_conf.pm \
Parse_mc.pm \
dynamic \
parse_mc \
sendmail \
update_auth update_authm4 \
update_conf \
update_db \
update_ldap \
update_mc \
update_mk \
update_notices \
update_sendmail \
update_smrsh \
update_sys \
update_tcpd \
update_tls update_tlsm4
dist_sbin_SCRIPTS = \
sendmailconfig
#
# Shipped manpages
#
dist_man_MANS = \
runq.sendmail.8 \
sendmailconfig.8
#
# Shipped data
#
nobase_dist_sysconf_DATA = \
mail/service.switch \
mail/service.switch-nodns \
mail/peers/provider
#
# Local customisation... not automake friendly (should all be SCRIPTS) :(
#
install-data-hook:
${LN_S} sendmail ${DESTDIR}${pkgdatadir}/hoststat;
${LN_S} sendmail ${DESTDIR}${pkgdatadir}/mailstats;
${LN_S} sendmail ${DESTDIR}${pkgdatadir}/mailq;
${LN_S} sendmail ${DESTDIR}${pkgdatadir}/newaliases;
${LN_S} sendmail ${DESTDIR}${pkgdatadir}/purgestat;
${LN_S} sendmail ${DESTDIR}${pkgdatadir}/runq;
${LN_S} sendmail ${DESTDIR}${pkgdatadir}/status;
#
# Debian targets, phase out
#
.PHONY: build-indep build-arch
.PHONY: install-indep install-arch
build-indep:
build-arch:
install-indep: install
install-arch:
|