mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
b7f41e3f67
secure reference the libraries that were just build instead of in /usr/lib.
15 lines
379 B
Makefile
15 lines
379 B
Makefile
# $Id: Makefile.inc,v 1.6 1995/05/11 22:07:49 jkh Exp $
|
|
|
|
DISTRIBUTION=des
|
|
|
|
.if exists(${.CURDIR}/../../lib/libtelnet/obj)
|
|
TELNETOBJDIR= ${.CURDIR}/../../lib/libtelnet/obj
|
|
.else
|
|
TELNETOBJDIR= ${.CURDIR}/../../lib/libtelnet
|
|
.endif
|
|
|
|
.if exists(${.CURDIR}/../../lib/libcrypt/obj)
|
|
CRYPTOBJDIR= ${.CURDIR}/../../lib/libcrypt/obj
|
|
.else
|
|
CRYPTOBJDIR= ${.CURDIR}/../../lib/libcrypt
|
|
.endif
|