Allow users to add local Makefile targets.

Submitted by:	dinoex
MFC after:	7 days
This commit is contained in:
Gregory Neil Shapiro 2001-05-15 16:03:54 +00:00
parent f3850b5461
commit c0ceaffbe6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=76623

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