freebsd-dev/libexec/smrsh/Makefile

38 lines
850 B
Makefile
Raw Normal View History

1998-08-04 15:31:31 +00:00
# @(#)Makefile 8.1 (Berkeley) 7/2/95
# $FreeBSD$
1998-08-04 15:31:31 +00:00
SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
.PATH: ${SENDMAIL_DIR}/smrsh
1998-08-04 15:31:31 +00:00
PROG= smrsh
SRCS= smrsh.c
MAN= smrsh.8
CFLAGS+=-I${SENDMAIL_DIR}/src -I${SENDMAIL_DIR}/include -I.
LIBSMDIR= ${.OBJDIR}/../../lib/libsm
LIBSM= ${LIBSMDIR}/libsm.a
DPADD= ${LIBSM}
LDADD= ${LIBSM}
WARNS?= 2
# Unfortunately, clang gives warnings about sendmail code that cannot
# be turned off yet. Since this is contrib code, and we don't really
# care about the warnings, just make them non-fatal for now.
NO_WERROR.clang=
SRCS+= sm_os.h
CLEANFILES+=sm_os.h
1998-08-04 15:31:31 +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}
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>