freebsd-dev/lib/libtelnet/Makefile
Bruce Evans a9d7016af5 Fixed removing of obsolete shared libraries:
- the directory was wrong if ${SHLIBDIR} != ${LIBDIR}.  It's still wrong
  if the installation of the obsolete library was done before /aout was
  appended to LIBDIR.
- the version would have become wrong when the default in ../Makefile.inc
  is changed from 2.0.
- the comment mostly described moving of libraries to /usr/lib/compat, but
  we don't do that.
1998-10-11 16:33:02 +00:00

19 lines
421 B
Makefile

# From: @(#)Makefile 8.2 (Berkeley) 12/15/93
# $Id: Makefile,v 1.8 1998/08/30 13:07:16 markm Exp $
LIB= telnet
SRCS= genget.c getent.c misc.c
CFLAGS+= -DHAS_CGETENT
NOPIC= true
#
# 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:
rm -f ${DESTDIR}${SHLIBDIR}/lib${LIB}.so.2.0
.include <bsd.lib.mk>