46f8fdc34e
INTERNALLIB now implies NOPIC and NOPROFILE. Removed gratuitous NOMAN.
34 lines
735 B
Makefile
34 lines
735 B
Makefile
# From: @(#)Makefile 8.2 (Berkeley) 12/15/93
|
|
# $FreeBSD$
|
|
|
|
LIB= telnet
|
|
|
|
INTERNALLIB= yes
|
|
|
|
SRCS= genget.c getent.c misc.c
|
|
|
|
WARNS?= 2
|
|
|
|
unifdef:
|
|
-cd ${.CURDIR} ; \
|
|
( for i in *.[ch] ; do \
|
|
unifdef -UAUTHENTICATION -UENCRYPTION \
|
|
${.CURDIR}/../../crypto/telnet/libtelnet/$$i \
|
|
> ${.CURDIR}/$$i ; \
|
|
echo $$i ; \
|
|
done )
|
|
|
|
.include <bsd.lib.mk>
|
|
|
|
#
|
|
# Remove obsolete shared libraries, if any. We don't bother moving them
|
|
# to /usr/lib/compat, since they were only used by telnet, telnetd and
|
|
# tn3270.
|
|
#
|
|
beforeinstall: __remove-stale-libs
|
|
__remove-stale-libs: .PHONY
|
|
.if exists(${DESTDIR}${SHLIBDIR}/lib${LIB}.so.2.0)
|
|
-chflags noschg ${DESTDIR}${SHLIBDIR}/lib${LIB}.so.2.0
|
|
rm -f ${DESTDIR}${SHLIBDIR}/lib${LIB}.so.2.0
|
|
.endif
|