Deleted Added
full compact
Makefile (232930) Makefile (247333)
1# @(#)Makefile 8.8 (Berkeley) 3/28/97
1# @(#)Makefile 8.8 (Berkeley) 3/28/97
2# $FreeBSD: stable/9/usr.sbin/sendmail/Makefile 232930 2012-03-13 18:39:57Z dim $
2# $FreeBSD: stable/9/usr.sbin/sendmail/Makefile 247333 2013-02-26 18:31:03Z dim $
3
4.include <bsd.own.mk>
5
6SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
7SMDIR= ${SENDMAIL_DIR}/src
8.PATH: ${SMDIR}
9
10BINDIR= /usr/libexec/sendmail

--- 29 unchanged lines hidden (view full) ---

40CFLAGS+= ${DBMDEF} ${NIS} -DTCPWRAPPERS ${MAPS}
41
42.if ${MK_INET6_SUPPORT} != "no"
43CFLAGS+= -DNETINET6
44.endif
45
46WARNS?= 1
47
3
4.include <bsd.own.mk>
5
6SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
7SMDIR= ${SENDMAIL_DIR}/src
8.PATH: ${SMDIR}
9
10BINDIR= /usr/libexec/sendmail

--- 29 unchanged lines hidden (view full) ---

40CFLAGS+= ${DBMDEF} ${NIS} -DTCPWRAPPERS ${MAPS}
41
42.if ${MK_INET6_SUPPORT} != "no"
43CFLAGS+= -DNETINET6
44.endif
45
46WARNS?= 1
47
48# Unfortunately, clang gives warnings about sendmail code that cannot
49# be turned off yet. Since this is contrib code, and we don't really
50# care about the warnings, just make them non-fatal for now.
51NO_WERROR.clang=
52
53DPADD= ${LIBUTIL} ${LIBWRAP}
54LDADD= -lutil -lwrap
55
56LIBSMDIR= ${.OBJDIR}/../../lib/libsm
57LIBSM= ${LIBSMDIR}/libsm.a
58
59LIBSMUTILDIR= ${.OBJDIR}/../../lib/libsmutil
60LIBSMUTIL= ${LIBSMUTILDIR}/libsmutil.a

--- 24 unchanged lines hidden ---
48DPADD= ${LIBUTIL} ${LIBWRAP}
49LDADD= -lutil -lwrap
50
51LIBSMDIR= ${.OBJDIR}/../../lib/libsm
52LIBSM= ${LIBSMDIR}/libsm.a
53
54LIBSMUTILDIR= ${.OBJDIR}/../../lib/libsmutil
55LIBSMUTIL= ${LIBSMUTILDIR}/libsmutil.a

--- 24 unchanged lines hidden ---