Makefile revision 228588
1#	@(#)Makefile	8.1 (Berkeley) 7/2/95
2# $FreeBSD: head/libexec/smrsh/Makefile 228588 2011-12-16 16:32:08Z dim $
3
4SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
5.PATH:	${SENDMAIL_DIR}/smrsh
6
7PROG=	smrsh
8SRCS=	smrsh.c
9MAN=	smrsh.8
10CFLAGS+=-I${SENDMAIL_DIR}/src -I${SENDMAIL_DIR}/include -I.
11
12LIBSMDIR=	${.OBJDIR}/../../lib/libsm
13LIBSM=		${LIBSMDIR}/libsm.a
14
15DPADD=	${LIBSM}
16LDADD=	${LIBSM}
17
18WARNS?=	2
19
20.if ${CC:T:Mclang} == "clang"
21# Unfortunately, clang gives warnings about sendmail code that cannot
22# be turned off yet.  Since this is contrib code, and we don't really
23# care about the warnings, just turn make them non-fatal for now.
24NO_WERROR=
25.endif
26
27SRCS+=	sm_os.h
28CLEANFILES+=sm_os.h
29
30# User customizations to the sendmail build environment
31CFLAGS+=${SENDMAIL_CFLAGS}
32DPADD+=${SENDMAIL_DPADD}
33LDADD+=${SENDMAIL_LDADD}
34LDFLAGS+=${SENDMAIL_LDFLAGS}
35
36sm_os.h:
37	ln -sf ${SENDMAIL_DIR}/include/sm/os/sm_os_freebsd.h sm_os.h
38
39.include <bsd.prog.mk>
40