aboutsummaryrefslogblamecommitdiff
path: root/bin/rmail/Makefile
blob: 9de213c607cd0b6e7fe941b2b4c27482c928a48a (plain) (tree)
1
2
3
4
5
6
7
8
9
                                              
           
 

                                    

                                              

             
               
               
                                 
         







                                                                  

                    
 

                                                       
                        

                            
 



                                                                     


                                                                 
                      
#	@(#)Makefile	8.1 (Berkeley) 5/31/93
# $FreeBSD$

MAINTAINER=	gshapiro@FreeBSD.org

SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
.PATH:	${SENDMAIL_DIR}/rmail

PROG=	rmail
SRCS=	rmail.c
MAN=	rmail.8
CFLAGS+=-I${SENDMAIL_DIR}/include
WARNS=	0

.if exists(${.OBJDIR}/../../lib/libsmutil)
LIBSMUTILDIR:=	${.OBJDIR}/../../lib/libsmutil
.else
LIBSMUTILDIR!=	cd ${.CURDIR}/../../lib/libsmutil; make -V .OBJDIR
.endif
LIBSMUTIL:=	${LIBSMUTILDIR}/libsmutil.a

DPADD=	${LIBSMUTIL}
LDADD=	${LIBSMUTIL}

# User customizations to the sendmail build environment
CFLAGS+=${SENDMAIL_CFLAGS}
DPADD+=${SENDMAIL_DPADD}
LDADD+=${SENDMAIL_LDADD}
LDFLAGS+=${SENDMAIL_LDFLAGS}

# If you want to have your rmail queuing the mail only, uncomment the
# following:
# CFLAGS+= -DQUEUE_ONLY

# Not much point this being static. It calls a shared sendmail...
NOSHARED?= NO

.include <bsd.prog.mk>