efcc9a4c9d
- SHLIBDIR Location to install shared libraries if ${USE_SHLIBDIR} is "yes". Defaults to "/usr/lib". - USE_SHLIBDIR If "yes", install shared libraries in ${SHLIBDIR} instead of ${LIBDIR}. Defaults to "no". Sets ${_LIBSODIR} to the appropriate value. This may be set by individual Makefiles as well. - SHLINKDIR Location of shared linker. Defaults to "/usr/libexec". If != "/usr/libexec", change the dynamic-linker encoded in shared programs * Set USE_SHLIBDIR for libraries used by /bin and /sbin: libc libcrypt libcrypto libedit libipsec libkvm libm libmi387 libtermcap libutil libz * If ${_LIBSODIR} != ${LIBDIR}, add symlinks from ${LIBDIR}/${LIB}.so* to ${_LIBSODIR}/${LIB}.so* for compatibility. * Always install /sbin/init statically (for now) The net effect of these changes depends on how the variables are set: 1.) If nothing is set or changed, there is no change from the current behaviour: - Static /bin, /sbin, and bits of /usr/* - Dynamic rest - Shared linker is /usr/libexec/ld*so 2.) If the following make variables are set: LDSTATIC= SHLINKDIR=/lib SHLIBDIR=/lib Then the behaviour becomes: - Dynamic tools - .so libraries used by /bin and /sbin are installed to /lib, with symlinks from /usr/lib/lib*so to -> /lib/lib*so where appropriate - Shared linker is /lib/ld*so 3.) As per 2.), but add the following variable: USE_SHLIBDIR=yes This forces all .so's to be instaleld in /lib (with compat symlinks), not just those tagged by their Makefiles to be. Again, compat symlinks are installed
43 lines
1.4 KiB
Makefile
43 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.37 2001/12/28 01:32:39 lukem Exp $
|
|
# from: @(#)Makefile 8.1 (Berkeley) 6/4/93
|
|
|
|
LIB= kvm
|
|
USE_SHLIBDIR= yes
|
|
CPPFLAGS+=-DLIBC_SCCS
|
|
|
|
SRCS= kvm.c kvm_file.c kvm_getloadavg.c kvm_proc.c
|
|
|
|
# This library should compile to the same thing on all variants of
|
|
# ${MACHINE} with the same ${MACHINE_ARCH} so shared /usr works.
|
|
# If it is necessary to run different code based on ${MACHINE} then
|
|
# the dispatch on ${MACHINE} should be done at run time (see m68k).
|
|
|
|
.include <bsd.own.mk>
|
|
.if exists(kvm_${MACHINE_ARCH}.c)
|
|
SRCS+= kvm_${MACHINE_ARCH}.c
|
|
.elif exists(kvm_${MACHINE_CPU}.c)
|
|
SRCS+= kvm_${MACHINE_CPU}.c
|
|
.else
|
|
.BEGIN:
|
|
@echo no kvm_xx.c for ${MACHINE_ARCH} nor ${MACHINE_CPU}
|
|
@false
|
|
.endif
|
|
|
|
# Additional modules needed for m68k
|
|
.if (${MACHINE_ARCH} == "m68k" || ${MACHINE_CPU} == "m68k")
|
|
SRCS+= kvm_m68k_cmn.c kvm_sun2.c kvm_sun3.c kvm_sun3x.c
|
|
.endif
|
|
|
|
MAN= kvm.3 kvm_dump.3 kvm_geterr.3 kvm_getfiles.3 kvm_getloadavg.3 \
|
|
kvm_getprocs.3 kvm_nlist.3 kvm_open.3 kvm_read.3
|
|
|
|
MLINKS+=kvm_getprocs.3 kvm_getargv.3 kvm_getprocs.3 kvm_getenvv.3
|
|
MLINKS+=kvm_getprocs.3 kvm_getproc2.3
|
|
MLINKS+=kvm_getprocs.3 kvm_getargv2.3 kvm_getprocs.3 kvm_getenvv2.3
|
|
MLINKS+=kvm_open.3 kvm_openfiles.3 kvm_open.3 kvm_close.3
|
|
MLINKS+=kvm_read.3 kvm_write.3
|
|
MLINKS+=kvm_dump.3 kvm_dump_mkheader.3 kvm_dump.3 kvm_dump_wrtheader.3
|
|
MLINKS+=kvm_dump.3 kvm_dump_inval.3
|
|
|
|
.include <bsd.lib.mk>
|