aac1559c314e00f14662364344f7b37bc0e48bef
[dragonfly.git] / libexec / mail.local / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 7/19/93
2 # $FreeBSD: src/libexec/mail.local/Makefile,v 1.10.2.7 2002/03/25 21:31:38 gshapiro Exp $
3 # $DragonFly: src/libexec/mail.local/Makefile,v 1.3 2004/01/31 06:56:40 dillon Exp $
4
5 SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
6 .PATH:  ${SENDMAIL_DIR}/mail.local
7
8 PROG=   mail.local
9 SRCS=   mail.local.c
10 MAN=    mail.local.8
11 CFLAGS+=-I${SENDMAIL_DIR}/include -I.
12
13 .if exists(${.OBJDIR}/../../lib/libsm)
14 LIBSMDIR:=      ${.OBJDIR}/../../lib/libsm
15 .else
16 LIBSMDIR!=      cd ${.CURDIR}/../../lib/libsm; make -V .OBJDIR
17 .endif
18 LIBSM:=         ${LIBSMDIR}/libsm.a
19
20 DPADD=  ${LIBSM}
21 LDADD=  ${LIBSM}
22
23 SRCS+=  sm_os.h
24 CLEANFILES+=sm_os.h
25
26 # User customizations to the sendmail build environment
27 CFLAGS+=${SENDMAIL_CFLAGS}
28 DPADD+=${SENDMAIL_DPADD}
29 LDADD+=${SENDMAIL_LDADD}
30 LDFLAGS+=${SENDMAIL_LDFLAGS}
31
32 sm_os.h:
33         ln -sf ${SENDMAIL_DIR}/include/sm/os/sm_os_freebsd.h sm_os.h
34
35 .include <bsd.prog.mk>