1#	@(#)Makefile	8.1 (Berkeley) 7/19/93
2# $FreeBSD$
3
4PACKAGE=sendmail
5SENDMAIL_DIR=${SRCTOP}/contrib/sendmail
6.PATH:	${SENDMAIL_DIR}/mail.local
7
8PROG=	mail.local
9SRCS=	mail.local.c
10MAN=	mail.local.8
11CFLAGS+=-I${SENDMAIL_DIR}/include -I.
12
13WARNS?=	2
14WFORMAT=0
15
16LIBADD=	sm
17
18SRCS+=	sm_os.h
19CLEANFILES+=sm_os.h
20
21# User customizations to the sendmail build environment
22CFLAGS+=${SENDMAIL_CFLAGS}
23DPADD+=${SENDMAIL_DPADD}
24LDADD+=${SENDMAIL_LDADD}
25LDFLAGS+=${SENDMAIL_LDFLAGS}
26
27sm_os.h: ${SENDMAIL_DIR}/include/sm/os/sm_os_freebsd.h .NOMETA
28	ln -sf ${.ALLSRC} ${.TARGET}
29
30.include <bsd.prog.mk>
31