29 lines
744 B
Makefile
29 lines
744 B
Makefile
|
# $FreeBSD$
|
||
|
|
||
|
MAINTAINER= gshapiro@FreeBSD.org
|
||
|
|
||
|
SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
|
||
|
.PATH: ${SENDMAIL_DIR}/libmilter ${SENDMAIL_DIR}/libsm
|
||
|
|
||
|
CFLAGS+=-I${SENDMAIL_DIR}/src -I${SENDMAIL_DIR}/include -I.
|
||
|
CFLAGS+=-DNETINET6 -DNOT_SENDMAIL -Dsm_snprintf=snprintf
|
||
|
CFLAGS+=-D_THREAD_SAFE
|
||
|
|
||
|
# User customizations to the sendmail build environment
|
||
|
CFLAGS+=${SENDMAIL_CFLAGS}
|
||
|
|
||
|
INCDIR= /usr/include/libmilter
|
||
|
INCS= ${SENDMAIL_DIR}/include/libmilter/mfapi.h \
|
||
|
${SENDMAIL_DIR}/include/libmilter/mfdef.h
|
||
|
LIB= milter
|
||
|
|
||
|
SRCS+= sm_os.h
|
||
|
SRCS+= main.c engine.c listener.c handler.c comm.c smfi.c \
|
||
|
signal.c sm_gethost.c errstring.c strl.c
|
||
|
CLEANFILES+=sm_os.h
|
||
|
|
||
|
sm_os.h:
|
||
|
ln -sf ${SENDMAIL_DIR}/include/sm/os/sm_os_freebsd.h sm_os.h
|
||
|
|
||
|
.include <bsd.lib.mk>
|