diff options
author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2005-06-10 06:12:53 +0000 |
---|---|---|
committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2005-06-10 06:12:53 +0000 |
commit | ee66677a7a4c93fa63e21b0e7f1ea2e081060abb (patch) | |
tree | 086bc6374cc176de9e2533a2b8b25ab0ef497b15 /usr.sbin/sendmail/Makefile | |
parent | 4c3763445ddc83d75b7e77c33aa5b1871fe550b7 (diff) |
Remove kludges intended to support src trees with partial obj trees.
Discussed with: ru
Notes
Notes:
svn path=/head/; revision=147225
Diffstat (limited to 'usr.sbin/sendmail/Makefile')
-rw-r--r-- | usr.sbin/sendmail/Makefile | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/usr.sbin/sendmail/Makefile b/usr.sbin/sendmail/Makefile index 7db47d05695f..dcf6e5bd0e30 100644 --- a/usr.sbin/sendmail/Makefile +++ b/usr.sbin/sendmail/Makefile @@ -43,19 +43,11 @@ CFLAGS+= -DNETINET6 DPADD= ${LIBUTIL} ${LIBWRAP} LDADD= -lutil -lwrap -.if exists(${.OBJDIR}/../../lib/libsm) -LIBSMDIR:= ${.OBJDIR}/../../lib/libsm -.else -LIBSMDIR!= cd ${.CURDIR}/../../lib/libsm; make -V .OBJDIR -.endif -LIBSM:= ${LIBSMDIR}/libsm.a +LIBSMDIR= ${.OBJDIR}/../../lib/libsm +LIBSM= ${LIBSMDIR}/libsm.a -.if exists(${.OBJDIR}/../../lib/libsmutil) -LIBSMUTILDIR:= ${.OBJDIR}/../../lib/libsmutil -.else -LIBSMUTILDIR!= cd ${.CURDIR}/../../lib/libsmutil; make -V .OBJDIR -.endif -LIBSMUTIL:= ${LIBSMUTILDIR}/libsmutil.a +LIBSMUTILDIR= ${.OBJDIR}/../../lib/libsmutil +LIBSMUTIL= ${LIBSMUTILDIR}/libsmutil.a DPADD+= ${LIBSMUTIL} ${LIBSM} LDADD+= ${LIBSMUTIL} ${LIBSM} |