23 lines
479 B
Makefile
23 lines
479 B
Makefile
# $FreeBSD$
|
|
|
|
MAINTAINER= gshapiro@FreeBSD.org
|
|
|
|
SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
|
|
.PATH: ${SENDMAIL_DIR}/libsmutil
|
|
|
|
CFLAGS+=-I${SENDMAIL_DIR}/src -I${SENDMAIL_DIR}/include
|
|
CFLAGS+=-DNEWDB -DNIS -DMAP_REGEX -DNOT_SENDMAIL
|
|
|
|
# User customizations to the sendmail build environment
|
|
CFLAGS+=${SENDMAIL_CFLAGS}
|
|
|
|
LIB= smutil
|
|
|
|
SRCS+= debug.c errstring.c lockfile.c safefile.c snprintf.c strl.c
|
|
|
|
INTERNALLIB= true
|
|
NOPIC= true
|
|
INTERNALSTATICLIB= true
|
|
|
|
.include <bsd.lib.mk>
|