Makefile revision 291320
1#	@(#)Makefile	8.1 (Berkeley) 5/31/93
2# $FreeBSD: head/bin/rmail/Makefile 291320 2015-11-25 19:44:43Z bdrewery $
3
4SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
5.PATH:	${SENDMAIL_DIR}/rmail
6
7# Not much point this being static. It calls a shared sendmail...
8NO_SHARED?= NO
9
10PROG=	rmail
11SRCS=	rmail.c
12MAN=	rmail.8
13
14WARNS?=	2
15CFLAGS+=-I${SENDMAIL_DIR}/include -I.
16
17LIBADD=	sm
18
19SRCS+=	sm_os.h
20CLEANFILES+=sm_os.h
21
22# User customizations to the sendmail build environment
23CFLAGS+=${SENDMAIL_CFLAGS}
24DPADD+=${SENDMAIL_DPADD}
25LDADD+=${SENDMAIL_LDADD}
26LDFLAGS+=${SENDMAIL_LDFLAGS}
27
28# If you want to have your rmail queuing the mail only, uncomment the
29# following:
30# CFLAGS+= -DQUEUE_ONLY
31
32sm_os.h: ${SENDMAIL_DIR}/include/sm/os/sm_os_freebsd.h .NOMETA
33	ln -sf ${.ALLSRC} ${.TARGET}
34
35.include <bsd.prog.mk>
36