diff options
author | joerg <joerg@FreeBSD.org> | 1996-02-13 09:17:42 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 1996-02-13 09:17:42 +0000 |
commit | 4b515e8781f22b6931b8c9340fff2edd14443602 (patch) | |
tree | a072afb569c93e450ea44997cb8b95edb7425416 /lib/Makefile | |
parent | 3c466005c3ed6a8c6cbfd141ab1bc77451114aff (diff) | |
download | FreeBSD-src-4b515e8781f22b6931b8c9340fff2edd14443602.zip FreeBSD-src-4b515e8781f22b6931b8c9340fff2edd14443602.tar.gz |
Include both, the regular and the `secure' libtelnet, when building
a release.
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile index 7417286..cec89cf 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -28,6 +28,10 @@ SUBDIR+= libcrypt .if !exists(../secure) || defined(NOSECURE) SUBDIR+= libtelnet .else +.if defined(RELEASEDIR) +# releases do need both libraries +SUBDIR+= libtelnet +.endif SUBDIR+= ../secure/lib/libtelnet .endif |