diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2004-03-22 03:17:36 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2004-03-22 03:17:36 +0000 |
| commit | 2edbecc6dbd1638cfe8ad86b242071c54bf5cc73 (patch) | |
| tree | 037ca06b5bf5ddaef40e44ca5b114cd9c4bca641 | |
| parent | 0598ef01ee7c82328a22ff92ffbc682c666a7a1b (diff) | |
Notes
| -rw-r--r-- | bin/rmail/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bin/rmail/Makefile b/bin/rmail/Makefile index 532a8d312352..f76781b848ec 100644 --- a/bin/rmail/Makefile +++ b/bin/rmail/Makefile @@ -4,12 +4,15 @@ SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail .PATH: ${SENDMAIL_DIR}/rmail +# Not much point this being static. It calls a shared sendmail... +NOSHARED?= NO + PROG= rmail SRCS= rmail.c MAN= rmail.8 -CFLAGS+=-I${SENDMAIL_DIR}/include -I. + WARNS?= 0 -WFORMAT=0 +CFLAGS+=-I${SENDMAIL_DIR}/include -I. .if exists(${.OBJDIR}/../../lib/libsm) LIBSMDIR:= ${.OBJDIR}/../../lib/libsm @@ -34,9 +37,6 @@ LDFLAGS+=${SENDMAIL_LDFLAGS} # following: # CFLAGS+= -DQUEUE_ONLY -# Not much point this being static. It calls a shared sendmail... -NOSHARED?= NO - sm_os.h: ln -sf ${SENDMAIL_DIR}/include/sm/os/sm_os_freebsd.h sm_os.h |
