mirror of
https://github.com/darold/sendmailanalyzer.git
synced 2026-05-15 14:15:56 -06:00
66 lines
1.5 KiB
Makefile
Executable file
66 lines
1.5 KiB
Makefile
Executable file
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
# Sample debian/rules that uses debhelper.
|
|
# This file was originally written by Joey Hess and Craig Small.
|
|
# As a special exception, when this file is copied by dh-make into a
|
|
# dh-make output file, you may use that output file without restriction.
|
|
# This special exception was added by Craig Small in version 0.37 of dh-make.
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
#export DH_VERBOSE=1
|
|
|
|
build:
|
|
dh_auto_configure
|
|
dh_auto_build
|
|
sed -i 's#my $$CONFIG_FILE .*#my $$CONFIG_FILE = "/etc/sendmailanalyzer.conf";#' cgi-bin/*.cgi sendmailanalyzer sa_cache
|
|
cp ChangeLog changelog
|
|
pod2man doc/sendmailanalyzer.pod sendmailanalyzer.1
|
|
pod2man doc/sa_cache.pod sa_cache.1
|
|
|
|
clean:
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_clean
|
|
|
|
install: build
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_prep
|
|
dh_installdirs
|
|
dh_installdocs
|
|
chmod 0755 sendmailanalyzer sa_cache cgi-bin/sa_report.cgi
|
|
dh_install
|
|
|
|
# Build architecture-dependent files here.
|
|
binary: build install
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_installchangelogs
|
|
# dh_installdocs
|
|
# dh_installexamples
|
|
# dh_install
|
|
# dh_installmenu
|
|
# dh_installdebconf
|
|
# dh_installlogrotate
|
|
# dh_installemacsen
|
|
# dh_installpam
|
|
# dh_installmime
|
|
dh_installinit
|
|
dh_installcron
|
|
# dh_installinfo
|
|
dh_installman
|
|
dh_link
|
|
# dh_strip
|
|
dh_compress
|
|
dh_fixperms
|
|
dh_perl
|
|
# dh_python
|
|
# dh_makeshlibs
|
|
dh_installdeb
|
|
# dh_shlibdeps
|
|
dh_gencontrol
|
|
dh_md5sums
|
|
dh_builddeb
|
|
|
|
#binary: binary-indep binary-arch
|
|
.PHONY: build-arch build-indep clean binary-indep binary-arch binary install configure
|