diff options
author | gshapiro <gshapiro@FreeBSD.org> | 2001-05-15 16:03:54 +0000 |
---|---|---|
committer | gshapiro <gshapiro@FreeBSD.org> | 2001-05-15 16:03:54 +0000 |
commit | 2acef0770ea892030141076d0aedb25bc0aacda4 (patch) | |
tree | 6facf924ac04df90d0d665dde8d97b34713ff3d8 /etc | |
parent | 6f3eff710681ba79fd764a5d21243597a6a89c35 (diff) | |
download | FreeBSD-src-2acef0770ea892030141076d0aedb25bc0aacda4.zip FreeBSD-src-2acef0770ea892030141076d0aedb25bc0aacda4.tar.gz |
Allow users to add local Makefile targets.
Submitted by: dinoex
MFC after: 7 days
Diffstat (limited to 'etc')
-rw-r--r-- | etc/mail/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/etc/mail/Makefile b/etc/mail/Makefile index 930efee..f6e34b8 100644 --- a/etc/mail/Makefile +++ b/etc/mail/Makefile @@ -166,3 +166,8 @@ stop: restart: ${KILL} -HUP `head -1 ${SENDMAIL_PIDFILE}` + +# User defined targets +.if exists(Makefile.local) +.include "Makefile.local" +.endif |