b017ff4eb8
- old static non-profiled libraries were removed in the wrong directory if ${ORIG_SHLIBDIR} != ${LIBDIR}. - old profiled libraries weren't removed. - new shared compat libraries were installed in the wrong directory if ${ORIG_SHLIBDIR} != /usr/lib. - some lines were too long. Added some comments about cases that have caused problems. Changed libfoo to ${LIB} so that libresolv/Makefile and libgnumalloc/Makefile are almost identical.
30 lines
978 B
Makefile
30 lines
978 B
Makefile
# $Id: Makefile,v 1.8 1996/09/27 12:10:08 peter Exp $
|
|
|
|
LIB= gnumalloc
|
|
INTERNALLIB= yes # Do not build or install ${LIB}*.a
|
|
SHLIB_MAJOR= 2
|
|
SHLIB_MINOR= 0
|
|
|
|
SRCS= cfree.c
|
|
|
|
#
|
|
# Before complaining about this, please *double-check* that you have
|
|
# updated the ldconfig path in /etc/rc to include /usr/lib/compat that
|
|
# was added in src/etc/rc rev 1.98.
|
|
# This is so that programs that use autoconf will not "detect" -lgnumalloc
|
|
# and continue to propagate the bogosity. The ldconfig path fix will enable
|
|
# you to run programs that were linked with -lgnumalloc (such as XFree86).
|
|
#
|
|
beforeinstall:
|
|
rm -f ${DESTDIR}${LIBDIR}/${LIB}.a ${DESTDIR}${LIBDIR}/${LIB}_p.a \
|
|
${DESTDIR}${ORIG_SHLIBDIR}/${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
|
|
|
|
.include <bsd.lib.mk>
|
|
|
|
# This must follow the .include in case SHLIBDIR is defined there.
|
|
ORIG_SHLIBDIR:= ${SHLIBDIR}
|
|
|
|
# The ldconfig line in/etc/rc doesn't depend on ${LIBDIR} or ${SHLIBDIR},
|
|
# so neither does this.
|
|
SHLIBDIR= /usr/lib/compat
|