diff options
| author | lukem <lukem@NetBSD.org> | 1999-02-12 11:32:32 +0000 |
|---|---|---|
| committer | lukem <lukem@NetBSD.org> | 1999-02-12 11:32:32 +0000 |
| commit | 76a2bd31c1b7caaba376818e03bfb6ffda1f95bf (patch) | |
| tree | 05bf255d359242cfa0029c1d59fdb24d50b18e60 /lib/libterm | |
| parent | dbdaf91650a439c36b9d3634e26fd5f1811862b3 (diff) | |
use MKxxx instead of NOxxx
Diffstat (limited to 'lib/libterm')
| -rw-r--r-- | lib/libterm/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libterm/Makefile b/lib/libterm/Makefile index 7960668e060..df6c814b311 100644 --- a/lib/libterm/Makefile +++ b/lib/libterm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 1999/02/12 11:14:11 christos Exp $ +# $NetBSD: Makefile,v 1.19 1999/02/12 11:32:32 lukem Exp $ # @(#)Makefile 8.1 (Berkeley) 6/4/93 LIB= termcap @@ -17,13 +17,13 @@ INCSDIR=/usr/include LINKS+= ${LIBDIR}/libtermcap.a ${LIBDIR}/libtermlib.a .endif -.if !defined(NOPROFILE) +.if ${MKPROFILE} != "no" LINKS+= ${LIBDIR}/libtermcap_p.a ${LIBDIR}/libtermlib_p.a .endif -.if !defined(NOPIC) +.if ${MKPIC} != "no" -.if !defined(NOPICINSTALL) +.if ${MKPICINSTALL} != "no" LINKS+= ${LIBDIR}/libtermcap_pic.a ${LIBDIR}/libtermlib_pic.a .endif @@ -38,6 +38,6 @@ LINKS+= ${LIBDIR}/lib${LIB}.so ${LIBDIR}/libtermlib.so .endif .endif -.endif # NOPIC +.endif # ${MKPIC} != "no" .include <bsd.lib.mk> |
