diff options
Diffstat (limited to 'libexec/mail.local/Makefile')
-rw-r--r-- | libexec/mail.local/Makefile | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/libexec/mail.local/Makefile b/libexec/mail.local/Makefile index 1e90280..1a61dd8 100644 --- a/libexec/mail.local/Makefile +++ b/libexec/mail.local/Makefile @@ -1,13 +1,24 @@ # @(#)Makefile 8.1 (Berkeley) 7/19/93 # $FreeBSD$ -.PATH: ${.CURDIR}/../../contrib/sendmail/mail.local \ - ${.CURDIR}/../../contrib/sendmail/src +SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail +.PATH: ${SENDMAIL_DIR}/mail.local PROG= mail.local -SRCS= mail.local.c snprintf.c +SRCS= mail.local.c MAN8= mail.local.8 BINMODE=4555 INSTALLFLAGS=-fschg +CFLAGS+=-I${SENDMAIL_DIR}/include + +.if exists(${.OBJDIR}/../../lib/libsmutil) +LIBSMUTILDIR:= ${.OBJDIR}/../../lib/libsmutil +.else +LIBSMUTILDIR!= cd ${.CURDIR}/../../lib/libsmutil; make -V .OBJDIR +.endif +LIBSMUTIL:= ${LIBSMUTILDIR}/libsmutil.a + +DPADD+= ${LIBSMUTIL} +LDADD+= ${LIBSMUTIL} .include <bsd.prog.mk> |