1# $FreeBSD$ 2 3.include <bsd.own.mk> 4 5SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail 6.PATH: ${SENDMAIL_DIR}/libsm 7 8CFLAGS+=-I${SENDMAIL_DIR}/src -I${SENDMAIL_DIR}/include -I. 9CFLAGS+=-DNEWDB -DNIS -DMAP_REGEX -DNOT_SENDMAIL 10 11.if ${MK_INET6_SUPPORT} != "no" 12CFLAGS+=-DNETINET6 13.endif 14 15# User customizations to the sendmail build environment 16CFLAGS+=${SENDMAIL_CFLAGS} 17 18WARNS?= 2 19 20LIB= sm 21 22SRCS+= sm_os.h 23SRCS+= assert.c debug.c errstring.c exc.c heap.c match.c rpool.c \ 24 strdup.c strerror.c strl.c clrerr.c fclose.c feof.c ferror.c \ 25 fflush.c fget.c fpos.c findfp.c flags.c fopen.c fprintf.c \ 26 fpurge.c fput.c fread.c fscanf.c fseek.c fvwrite.c fwalk.c \ 27 fwrite.c get.c makebuf.c put.c refill.c rewind.c setvbuf.c \ 28 smstdio.c snprintf.c sscanf.c stdio.c strio.c ungetc.c \ 29 vasprintf.c vfprintf.c vfscanf.c vprintf.c vsnprintf.c \ 30 wbuf.c wsetup.c string.c stringf.c \ 31 xtrap.c strto.c test.c path.c strcasecmp.c strrevcmp.c \ 32 signal.c clock.c config.c sem.c shm.c mbdb.c strexit.c cf.c ldap.c \ 33 niprop.c mpeix.c memstat.c util.c 34CLEANFILES+=sm_os.h 35 36INTERNALLIB= 37 38sm_os.h: 39 ln -sf ${SENDMAIL_DIR}/include/sm/os/sm_os_freebsd.h sm_os.h 40 41.include <bsd.lib.mk> 42