1# @(#)Makefile 8.1 (Berkeley) 7/19/93 2# $FreeBSD$ 3 4SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail 5.PATH: ${SENDMAIL_DIR}/mail.local 6 7PROG= mail.local 8SRCS= mail.local.c 9MAN= mail.local.8 10CFLAGS+=-I${SENDMAIL_DIR}/include -I. 11 12WARNS?= 2 13WFORMAT=0 14 15LIBADD= sm 16 17SRCS+= sm_os.h 18CLEANFILES+=sm_os.h 19 20# User customizations to the sendmail build environment 21CFLAGS+=${SENDMAIL_CFLAGS} 22DPADD+=${SENDMAIL_DPADD} 23LDADD+=${SENDMAIL_LDADD} 24LDFLAGS+=${SENDMAIL_LDFLAGS} 25 26sm_os.h: ${SENDMAIL_DIR}/include/sm/os/sm_os_freebsd.h .NOMETA 27 ln -sf ${.ALLSRC} ${.TARGET} 28 29.include <bsd.prog.mk> 30