]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - bin/rmail/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / bin / rmail / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 5/31/93
2 # $FreeBSD$
3
4 SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
5 .PATH:  ${SENDMAIL_DIR}/rmail
6
7 # Not much point this being static. It calls a shared sendmail...
8 NO_SHARED?= NO
9
10 PROG=   rmail
11 SRCS=   rmail.c
12 MAN=    rmail.8
13
14 WARNS?= 2
15 CFLAGS+=-I${SENDMAIL_DIR}/include -I.
16
17 LIBSMDIR=       ${.OBJDIR}/../../lib/libsm
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 # If you want to have your rmail queuing the mail only, uncomment the
33 # following:
34 # CFLAGS+= -DQUEUE_ONLY
35
36 sm_os.h:
37         ln -sf ${SENDMAIL_DIR}/include/sm/os/sm_os_freebsd.h sm_os.h
38
39 .include <bsd.prog.mk>