summaryrefslogtreecommitdiffstats
path: root/bin/rmail/Makefile
diff options
context:
space:
mode:
authorgshapiro <gshapiro@FreeBSD.org>2002-02-17 22:05:07 +0000
committergshapiro <gshapiro@FreeBSD.org>2002-02-17 22:05:07 +0000
commit730b12a9a97574dedbbaf4b030508d12e352a2dd (patch)
tree588b0c80154fe0800ed93be988c1076a84c146b5 /bin/rmail/Makefile
parent1e52eaa8307b970ecf1ca3fb19ca0c75f43765bb (diff)
downloadFreeBSD-src-730b12a9a97574dedbbaf4b030508d12e352a2dd.zip
FreeBSD-src-730b12a9a97574dedbbaf4b030508d12e352a2dd.tar.gz
Update build infrastructure for sendmail 8.12.
Diffstat (limited to 'bin/rmail/Makefile')
-rw-r--r--bin/rmail/Makefile20
1 files changed, 13 insertions, 7 deletions
diff --git a/bin/rmail/Makefile b/bin/rmail/Makefile
index 2571512..485d153 100644
--- a/bin/rmail/Makefile
+++ b/bin/rmail/Makefile
@@ -9,19 +9,22 @@ SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
PROG= rmail
SRCS= rmail.c
MAN= rmail.8
-CFLAGS+=-I${SENDMAIL_DIR}/include
+CFLAGS+=-I${SENDMAIL_DIR}/include -I.
WARNS= 0
WFORMAT=0
-.if exists(${.OBJDIR}/../../lib/libsmutil)
-LIBSMUTILDIR:= ${.OBJDIR}/../../lib/libsmutil
+.if exists(${.OBJDIR}/../../lib/libsm)
+LIBSMDIR:= ${.OBJDIR}/../../lib/libsm
.else
-LIBSMUTILDIR!= cd ${.CURDIR}/../../lib/libsmutil; make -V .OBJDIR
+LIBSMDIR!= cd ${.CURDIR}/../../lib/libsm; make -V .OBJDIR
.endif
-LIBSMUTIL:= ${LIBSMUTILDIR}/libsmutil.a
+LIBSM:= ${LIBSMDIR}/libsm.a
-DPADD= ${LIBSMUTIL}
-LDADD= ${LIBSMUTIL}
+DPADD= ${LIBSM}
+LDADD= ${LIBSM}
+
+SRCS+= sm_os.h
+CLEANFILES+=sm_os.h
# User customizations to the sendmail build environment
CFLAGS+=${SENDMAIL_CFLAGS}
@@ -36,4 +39,7 @@ LDFLAGS+=${SENDMAIL_LDFLAGS}
# 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
+
.include <bsd.prog.mk>
OpenPOWER on IntegriCloud