diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1996-09-27 16:22:49 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1996-09-27 16:22:49 +0000 |
| commit | b017ff4eb8d813e9adc10a1cb7c2210ea8f4c6e9 (patch) | |
| tree | 34cc72dff210ba3f3d20fdb986d0e9bc30992548 /lib/libgnumalloc | |
| parent | fab94ac15b4c228ccbbb46f5454543078726f54e (diff) | |
Notes
Diffstat (limited to 'lib/libgnumalloc')
| -rw-r--r-- | lib/libgnumalloc/Makefile | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/lib/libgnumalloc/Makefile b/lib/libgnumalloc/Makefile index ca6b57421dab..44231243554e 100644 --- a/lib/libgnumalloc/Makefile +++ b/lib/libgnumalloc/Makefile @@ -1,7 +1,7 @@ -# $Id: Makefile,v 1.7 1996/09/27 06:58:03 peter Exp $ +# $Id: Makefile,v 1.8 1996/09/27 12:10:08 peter Exp $ LIB= gnumalloc -INTERNALLIB= yes # Do not build or install lib*.a +INTERNALLIB= yes # Do not build or install ${LIB}*.a SHLIB_MAJOR= 2 SHLIB_MINOR= 0 @@ -16,9 +16,14 @@ SRCS= cfree.c # you to run programs that were linked with -lgnumalloc (such as XFree86). # beforeinstall: - rm -f ${DESTDIR}${ORIG_SHLIBDIR}/libgnumalloc.a - rm -f ${DESTDIR}${ORIG_SHLIBDIR}/libgnumalloc.so.${SHLIB_MAJOR}.${SHLIB_MINOR} + rm -f ${DESTDIR}${LIBDIR}/${LIB}.a ${DESTDIR}${LIBDIR}/${LIB}_p.a \ + ${DESTDIR}${ORIG_SHLIBDIR}/${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} .include <bsd.lib.mk> -ORIG_SHLIBDIR:= ${SHLIBDIR} -SHLIBDIR= ${ORIG_SHLIBDIR}/compat + +# 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 |
