1998-08-04 15:31:31 +00:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 7/2/95
|
2000-08-12 22:39:25 +00:00
|
|
|
# $FreeBSD$
|
1998-08-04 15:31:31 +00:00
|
|
|
|
2000-08-12 22:39:25 +00:00
|
|
|
SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
|
|
|
|
.PATH: ${SENDMAIL_DIR}/smrsh
|
1998-08-04 15:31:31 +00:00
|
|
|
|
|
|
|
PROG= smrsh
|
2000-08-12 22:39:25 +00:00
|
|
|
SRCS= smrsh.c
|
2001-03-26 14:22:12 +00:00
|
|
|
MAN= smrsh.8
|
2002-02-17 22:05:07 +00:00
|
|
|
CFLAGS+=-I${SENDMAIL_DIR}/src -I${SENDMAIL_DIR}/include -I.
|
2000-08-12 22:39:25 +00:00
|
|
|
|
2005-06-10 06:12:53 +00:00
|
|
|
LIBSMDIR= ${.OBJDIR}/../../lib/libsm
|
|
|
|
LIBSM= ${LIBSMDIR}/libsm.a
|
2000-08-12 22:39:25 +00:00
|
|
|
|
2002-02-17 22:05:07 +00:00
|
|
|
DPADD= ${LIBSM}
|
|
|
|
LDADD= ${LIBSM}
|
|
|
|
|
2010-01-02 09:50:19 +00:00
|
|
|
WARNS?= 2
|
|
|
|
|
2011-12-16 16:32:08 +00:00
|
|
|
# Unfortunately, clang gives warnings about sendmail code that cannot
|
|
|
|
# be turned off yet. Since this is contrib code, and we don't really
|
2011-12-16 17:02:25 +00:00
|
|
|
# care about the warnings, just make them non-fatal for now.
|
2012-02-28 18:30:18 +00:00
|
|
|
NO_WERROR.clang=
|
2011-12-16 16:32:08 +00:00
|
|
|
|
2002-02-17 22:05:07 +00:00
|
|
|
SRCS+= sm_os.h
|
|
|
|
CLEANFILES+=sm_os.h
|
1998-08-04 15:31:31 +00:00
|
|
|
|
2000-09-17 00:41:33 +00:00
|
|
|
# User customizations to the sendmail build environment
|
|
|
|
CFLAGS+=${SENDMAIL_CFLAGS}
|
|
|
|
DPADD+=${SENDMAIL_DPADD}
|
2000-10-11 05:04:21 +00:00
|
|
|
LDADD+=${SENDMAIL_LDADD}
|
|
|
|
LDFLAGS+=${SENDMAIL_LDFLAGS}
|
2000-09-17 00:41:33 +00:00
|
|
|
|
2002-02-17 22:05:07 +00:00
|
|
|
sm_os.h:
|
|
|
|
ln -sf ${SENDMAIL_DIR}/include/sm/os/sm_os_freebsd.h sm_os.h
|
|
|
|
|
1998-08-04 15:31:31 +00:00
|
|
|
.include <bsd.prog.mk>
|