diff options
author | Gregory Neil Shapiro <gshapiro@FreeBSD.org> | 2000-08-12 22:39:25 +0000 |
---|---|---|
committer | Gregory Neil Shapiro <gshapiro@FreeBSD.org> | 2000-08-12 22:39:25 +0000 |
commit | 88c75941e63c3cf4adc2948d1db54b4afd030f1b (patch) | |
tree | dfda633f687732f5ca9a80a596bb9c817c8bea30 /libexec/smrsh/Makefile | |
parent | cd904b75f96a3c329e595e33fa1f1330308391af (diff) | |
download | src-88c75941e63c3cf4adc2948d1db54b4afd030f1b.tar.gz src-88c75941e63c3cf4adc2948d1db54b4afd030f1b.zip |
The rest of the changes needed to support the new version of sendmail (8.11.0).
Beyond changes to the build system, this includes fixing up the sample
freebsd.mc configuration for changes in defaults and syntax, removing
outdated documentation, and updating the release notes.
Notes
Notes:
svn path=/head/; revision=64567
Diffstat (limited to 'libexec/smrsh/Makefile')
-rw-r--r-- | libexec/smrsh/Makefile | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/libexec/smrsh/Makefile b/libexec/smrsh/Makefile index c428f2809229..086368f483f7 100644 --- a/libexec/smrsh/Makefile +++ b/libexec/smrsh/Makefile @@ -1,9 +1,22 @@ # @(#)Makefile 8.1 (Berkeley) 7/2/95 +# $FreeBSD$ -.PATH: ${.CURDIR}/../../contrib/sendmail/smrsh +SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail +.PATH: ${SENDMAIL_DIR}/smrsh PROG= smrsh +SRCS= smrsh.c MAN8= smrsh.8 -CFLAGS+=-I${.CURDIR}/../../contrib/sendmail/src -DNEWDB +CFLAGS+=-I${SENDMAIL_DIR}/src -I${SENDMAIL_DIR}/include + +.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} .include <bsd.prog.mk> |