Allow users to add local Makefile targets.

Submitted by:	dinoex
MFC after:	7 days
This commit is contained in:
gshapiro 2001-05-15 16:03:54 +00:00
parent 6f3eff7106
commit 2acef0770e

View File

@ -166,3 +166,8 @@ stop:
restart:
${KILL} -HUP `head -1 ${SENDMAIL_PIDFILE}`
# User defined targets
.if exists(Makefile.local)
.include "Makefile.local"
.endif