[BACK]Return to bsd.lib.mk CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / share / mk

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/share/mk/bsd.lib.mk between version 1.47 and 1.324.2.2

version 1.47, 1994/02/09 23:50:36 version 1.324.2.2, 2013/02/25 00:28:16
Line 1 
Line 1 
 #       from: @(#)bsd.lib.mk    5.26 (Berkeley) 5/2/91  #       $NetBSD$
 #       $Id$  #       @(#)bsd.lib.mk  8.3 (Berkeley) 4/22/94
   
 .if exists(${.CURDIR}/../Makefile.inc)  .include <bsd.init.mk>
 .include "${.CURDIR}/../Makefile.inc"  .include <bsd.shlib.mk>
   .include <bsd.gcc.mk>
   # Pull in <bsd.sys.mk> here so we can override its .c.o rule
   .include <bsd.sys.mk>
   
   LIBISMODULE?=   no
   LIBISPRIVATE?=  no
   LIBISCXX?=      no
   
   .if ${LIBISMODULE} != "no"
   _LIB_PREFIX?=   # empty
   MKDEBUGLIB:=    no
   MKLINT:=        no
   MKPICINSTALL:=  no
   MKPROFILE:=     no
   MKSTATICLIB:=   no
   .else
   _LIB_PREFIX?=   lib
   .endif
   
   .if ${LIBISPRIVATE} != "no"
   MKDEBUGLIB:=    no
   MKLINT:=        no
   MKPICINSTALL:=  no
   . if defined(NOSTATICLIB) && ${MKPICLIB} != "no"
   MKSTATICLIB:=   no
   . else
   MKPIC:=         no
   . endif
   MKPROFILE:=     no
   .endif
   
   ##### Basic targets
   .PHONY:         checkver libinstall
   realinstall:    checkver libinstall
   
   ##### LIB specific flags.
   # XXX: This is needed for programs that link with .a libraries
   # Perhaps a more correct solution is to always generate _pic.a
   # files or always have a shared library.
   .if defined(MKPIE) && (${MKPIE} != "no")
   CFLAGS+=        ${PIE_CFLAGS}
   AFLAGS+=        ${PIE_AFLAGS}
   .endif
   
   .if defined(MKDEBUG) && (${MKDEBUG} != "no")
   # We only add -g to the shared library objects
   # because we don't currently split .a archives.
   CSHLIBFLAGS+=   -g
   .endif
   
   ##### Libraries that this may depend upon.
   .if defined(LIBDPLIBS) && ${MKPIC} != "no"                              # {
   .for _lib _dir in ${LIBDPLIBS}
   .if !defined(LIBDO.${_lib})
   LIBDO.${_lib}!= cd "${_dir}" && ${PRINTOBJDIR}
   .MAKEOVERRIDES+=LIBDO.${_lib}
   .endif
   .if ${LIBDO.${_lib}} == "_external"
   LDADD+=         -l${_lib}
   .else
   LDADD+=         -L${LIBDO.${_lib}} -l${_lib}
   DPADD+=         ${LIBDO.${_lib}}/lib${_lib}.so  # Don't use _LIB_PREFIX
   .endif
   .endfor
   .endif                                                                  # }
   
   ##### Build and install rules
   MKDEP_SUFFIXES?=        .o .po .pico .go .ln
   
   .if !defined(SHLIB_MAJOR) && exists(${SHLIB_VERSION_FILE})              # {
   SHLIB_MAJOR != . ${SHLIB_VERSION_FILE} ; echo $$major
   SHLIB_MINOR != . ${SHLIB_VERSION_FILE} ; echo $$minor
   SHLIB_TEENY != . ${SHLIB_VERSION_FILE} ; echo $$teeny
   
   DPADD+= ${SHLIB_VERSION_FILE}
   
   # Check for higher installed library versions.
   .if !defined(NOCHECKVER) && !defined(NOCHECKVER_${LIB}) && \
           exists(${NETBSDSRCDIR}/lib/checkver)
   checkver:
           @(cd "${.CURDIR}" && \
               HOST_SH=${HOST_SH:Q} AWK=${TOOL_AWK:Q} \
               ${HOST_SH} ${NETBSDSRCDIR}/lib/checkver -v ${SHLIB_VERSION_FILE} \
                       -d ${_DEST.OBJ} ${LIB})
   .endif
   .endif                                                                  # }
   
   .if !target(checkver)
   checkver:
   .endif
   
   print-shlib-major:
   .if defined(SHLIB_MAJOR) && ${MKPIC} != "no"
           @echo ${SHLIB_MAJOR}
   .else
           @false
   .endif
   
   print-shlib-minor:
   .if defined(SHLIB_MINOR) && ${MKPIC} != "no"
           @echo ${SHLIB_MINOR}
   .else
           @false
   .endif
   
   print-shlib-teeny:
   .if defined(SHLIB_TEENY) && ${MKPIC} != "no"
           @echo ${SHLIB_TEENY}
   .else
           @false
   .endif
   
   .if defined(SHLIB_MAJOR) && !empty(SHLIB_MAJOR)                         # {
   .if defined(SHLIB_MINOR) && !empty(SHLIB_MINOR)
   .if defined(SHLIB_TEENY) && !empty(SHLIB_TEENY)
   SHLIB_FULLVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR}.${SHLIB_TEENY}
   .else
   SHLIB_FULLVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR}
   .endif
   .else
   SHLIB_FULLVERSION=${SHLIB_MAJOR}
 .endif  .endif
   .endif                                                                  # }
   
 .if exists(${.CURDIR}/shlib_version)  # add additional suffixes not exported.
 SHLIB_MAJOR != . ${.CURDIR}/shlib_version ; echo $$major  # .po is used for profiling object files.
 SHLIB_MINOR != . ${.CURDIR}/shlib_version ; echo $$minor  # .pico is used for PIC object files.
   .SUFFIXES: .out .a .ln .pico .po .go .o .s .S .c .cc .cpp .cxx .C .m .F .f .r .y .l .cl .p .h
   .SUFFIXES: .sh .m4 .m
   
   
   # Set PICFLAGS to cc flags for producing position-independent code,
   # if not already set.  Includes -DPIC, if required.
   
   # Data-driven table using make variables to control how shared libraries
   # are built for different platforms and object formats.
   # SHLIB_MAJOR, SHLIB_MINOR, SHLIB_TEENY: Major, minor, and teeny version
   #                       numbers of shared library
   # SHLIB_SOVERSION:      version number to be compiled into a shared library
   #                       via -soname. Usualy ${SHLIB_MAJOR} on ELF.
   #                       NetBSD/pmax used to use ${SHLIB_MAJOR}[.${SHLIB_MINOR}
   #                       [.${SHLIB_TEENY}]]
   # SHLIB_SHFLAGS:        Flags to tell ${LD} to emit shared library.
   #                       with ELF, also set shared-lib version for ld.so.
   # SHLIB_LDSTARTFILE:    support .o file, call C++ file-level constructors
   # SHLIB_LDENDFILE:      support .o file, call C++ file-level destructors
   # FPICFLAGS:            flags for ${FC} to compile .[fF] files to .pico objects.
   # CPPPICFLAGS:          flags for ${CPP} to preprocess .[sS] files for ${AS}
   # CPICFLAGS:            flags for ${CC} to compile .[cC] files to pic objects.
   # CSHLIBFLAGS:          flags for ${CC} to compile .[cC] files to .pico objects.
   #                       (usually includes ${CPICFLAGS})
   # CAPICFLAGS:           flags for ${CC} to compiling .[Ss] files
   #                       (usually just ${CPPPICFLAGS} ${CPICFLAGS})
   # APICFLAGS:            flags for ${AS} to assemble .[sS] to .pico objects.
   
   .if ${MACHINE_ARCH} == "alpha"                                          # {
   
   FPICFLAGS ?= -fPIC
   CPICFLAGS ?= -fPIC -DPIC
   CPPPICFLAGS?= -DPIC
   CAPICFLAGS?= ${CPPPICFLAGS} ${CPICFLAGS}
   APICFLAGS ?=
   
   .elif (${MACHINE_ARCH} == "sparc" || ${MACHINE_ARCH} == "sparc64")      # } {
   
   # If you use -fPIC you need to define BIGPIC to turn on 32-bit
   # relocations in asm code
   FPICFLAGS ?= -fPIC
   CPICFLAGS ?= -fPIC -DPIC
   CPPPICFLAGS?= -DPIC -DBIGPIC
   CAPICFLAGS?= ${CPPPICFLAGS} ${CPICFLAGS}
   APICFLAGS ?= -KPIC
   
   .else                                                                   # } {
   
   # Platform-independent flags for NetBSD shared libraries
   SHLIB_SOVERSION=${SHLIB_FULLVERSION}
   SHLIB_SHFLAGS=
   FPICFLAGS ?= -fPIC
   CPICFLAGS?= -fPIC -DPIC
   CPPPICFLAGS?= -DPIC
   CAPICFLAGS?= ${CPPPICFLAGS} ${CPICFLAGS}
   APICFLAGS?= -k
   
   .endif                                                                  # }
   
   .if ${MKPICLIB} != "no"
   CSHLIBFLAGS+= ${CPICFLAGS}
 .endif  .endif
   
 .MAIN: all  .if defined(CSHLIBFLAGS) && !empty(CSHLIBFLAGS)
   MKSHLIBOBJS= yes
   .else
   MKSHLIBOBJS= no
   .endif
   
 # prefer .S to a .c, add .po, remove stuff not used in the BSD libraries  # Platform-independent linker flags for ELF shared libraries
 # .so used for PIC object files  SHLIB_SOVERSION=        ${SHLIB_MAJOR}
 .SUFFIXES:  SHLIB_SHFLAGS=          -Wl,-soname,${_LIB}.so.${SHLIB_SOVERSION}
 .SUFFIXES: .out .o .po .so .S .s .c .cc .C .f .y .l  SHLIB_SHFLAGS+=         -Wl,--warn-shared-textrel
   SHLIB_LDSTARTFILE?=     ${_GCC_CRTI} ${_GCC_CRTBEGINS}
   SHLIB_LDENDFILE?=       ${_GCC_CRTENDS} ${_GCC_CRTN}
   
   CFLAGS+=        ${COPTS}
   OBJCFLAGS+=     ${OBJCOPTS}
   AFLAGS+=        ${COPTS}
   FFLAGS+=        ${FOPTS}
   
   .if defined(CTFCONVERT)
   .if defined(CFLAGS) && !empty(CFLAGS:M*-g*)
   CTFFLAGS+=      -g
   .endif
   .endif
   
 .c.o:  .c.o:
         ${CC} ${CFLAGS} -c ${.IMPSRC}          ${_MKTARGET_COMPILE}
         @${LD} -x -r ${.TARGET}          ${COMPILE.c} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
         @mv a.out ${.TARGET}  .if defined(CTFCONVERT)
           ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
   .endif
   .if !defined(CFLAGS) || empty(CFLAGS:M*-g*)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   .endif
   
 .c.po:  .c.po:
         ${CC} -p ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET}          ${_MKTARGET_COMPILE}
         @${LD} -X -r ${.TARGET}          ${COMPILE.c} ${PROFFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} -pg ${.IMPSRC} -o ${.TARGET}
         @mv a.out ${.TARGET}  .if defined(CTFCONVERT)
           ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
 .c.so:  .endif
         ${CC} ${PICFLAG} -DPIC ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET}  .if !defined(CFLAGS) || empty(CFLAGS:M*-g*)
         @${LD} -x -r ${.TARGET}          ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
         @mv a.out ${.TARGET}  
   
 .cc.o .C.o:  
         ${CXX} ${CXXFLAGS} -c ${.IMPSRC}  
         @${LD} -x -r ${.TARGET}  
         @mv a.out ${.TARGET}  
   
 .cc.po .C.po:  
         ${CXX} -p ${CXXFLAGS} -c ${.IMPSRC} -o ${.TARGET}  
         @${LD} -X -r ${.TARGET}  
         @mv a.out ${.TARGET}  
   
 .cc.so .C.so:  
         ${CXX} ${PICFLAG} -DPIC ${CXXFLAGS} -c ${.IMPSRC} -o ${.TARGET}  
         @${LD} -x -r ${.TARGET}  
         @mv a.out ${.TARGET}  
   
 .S.o .s.o:  
         ${CPP} -E ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} | \  
             ${AS} -o ${.TARGET}  
         @${LD} -x -r ${.TARGET}  
         @mv a.out ${.TARGET}  
   
 .S.po .s.po:  
         ${CPP} -E -DPROF ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} | \  
             ${AS} -o ${.TARGET}  
         @${LD} -X -r ${.TARGET}  
         @mv a.out ${.TARGET}  
   
 .S.so .s.so:  
         ${CPP} -E -DPIC ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} | \  
             ${AS} -k -o ${.TARGET}  
         @${LD} -x -r ${.TARGET}  
         @mv a.out ${.TARGET}  
   
 .if !defined(NOPROFILE)  
 _LIBS=lib${LIB}.a lib${LIB}_p.a  
 .else  
 _LIBS=lib${LIB}.a  
 .endif  
   
 .if !defined(NOPIC)  
 _LIBS+=lib${LIB}_pic.a  
 .if defined(SHLIB_MAJOR) && defined(SHLIB_MINOR)  
 _LIBS+=lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}  
 .endif  
 .endif  
   
 .if !defined(PICFLAG)  
 PICFLAG=-fpic  
 .endif  
   
 all: ${_LIBS} # llib-l${LIB}.ln  
   
 OBJS+=  ${SRCS:N*.h:R:S/$/.o/g}  
   
 lib${LIB}.a:: ${OBJS}  
         @echo building standard ${LIB} library  
         @rm -f lib${LIB}.a  
         @${AR} cq lib${LIB}.a `lorder ${OBJS} | tsort`  
         ${RANLIB} lib${LIB}.a  
   
 POBJS+= ${OBJS:.o=.po}  
 lib${LIB}_p.a:: ${POBJS}  
         @echo building profiled ${LIB} library  
         @rm -f lib${LIB}_p.a  
         @${AR} cq lib${LIB}_p.a `lorder ${POBJS} | tsort`  
         ${RANLIB} lib${LIB}_p.a  
   
 SOBJS+= ${OBJS:.o=.so}  
 lib${LIB}_pic.a:: ${SOBJS}  
         @echo building shared object ${LIB} library  
         @rm -f lib${LIB}_pic.a  
         @${AR} cq lib${LIB}_pic.a `lorder ${SOBJS} | tsort`  
         ${RANLIB} lib${LIB}_pic.a  
   
 lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}: lib${LIB}_pic.a ${DPADD}  
         @echo building shared ${LIB} library \(version ${SHLIB_MAJOR}.${SHLIB_MINOR}\)  
         @rm -f lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}  
         $(LD) -Bshareable -Bforcearchive \  
             -o lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} lib${LIB}_pic.a ${LDADD}  
   
 llib-l${LIB}.ln: ${SRCS}  
         ${LINT} -C${LIB} ${CFLAGS} ${.ALLSRC:M*.c}  
   
 .if !target(clean)  
 clean:  
         rm -f a.out Errs errs mklog core ${CLEANFILES}  
         rm -f ${OBJS}  
         rm -f ${POBJS} profiled/*.o  
         rm -f ${SOBJS} shared/*.o  
         rm -f lib${LIB}.a lib${LIB}_p.a lib${LIB}_pic.a llib-l${LIB}.ln  
         rm -f lib${LIB}.so.*.*  
 .endif  
   
 cleandir: clean  
   
 .if defined(SRCS)  
 afterdepend:  
         @(TMP=/tmp/_depend$$$$; \  
             sed -e 's/^\([^\.]*\).o[ ]*:/\1.o \1.po \1.so:/' < .depend > $$TMP; \  
             mv $$TMP .depend)  
 .endif  
   
 .if !target(install)  
 .if !target(beforeinstall)  
 beforeinstall:  
 .endif  
   
 realinstall:  
 #       ranlib lib${LIB}.a  
         install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} lib${LIB}.a \  
             ${DESTDIR}${LIBDIR}  
         ${RANLIB} -t ${DESTDIR}${LIBDIR}/lib${LIB}.a  
 .if !defined(NOPROFILE)  
 #       ranlib lib${LIB}_p.a  
         install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \  
             lib${LIB}_p.a ${DESTDIR}${LIBDIR}  
         ${RANLIB} -t ${DESTDIR}${LIBDIR}/lib${LIB}_p.a  
 .endif  
 .if !defined(NOPIC)  
 #       ranlib lib${LIB}_pic.a  
         install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \  
             lib${LIB}_pic.a ${DESTDIR}${LIBDIR}  
         ${RANLIB} -t ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a  
 .endif  
 .if !defined(NOPIC) && defined(SHLIB_MAJOR) && defined(SHLIB_MINOR)  
         install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \  
             lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} ${DESTDIR}${LIBDIR}  
 .endif  
 #       install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \  
 #           llib-l${LIB}.ln ${DESTDIR}${LINTLIBDIR}  
 .if defined(LINKS) && !empty(LINKS)  
         @set ${LINKS}; \  
         while test $$# -ge 2; do \  
                 l=${DESTDIR}$$1; \  
                 shift; \  
                 t=${DESTDIR}$$1; \  
                 shift; \  
                 echo $$t -\> $$l; \  
                 rm -f $$t; \  
                 ln $$l $$t; \  
         done; true  
 .endif  
   
 install: maninstall  
 maninstall: afterinstall  
 afterinstall: realinstall  
 realinstall: beforeinstall  
 .endif  .endif
   
 .if !defined(NOMAN)  .c.go:
 .include <bsd.man.mk>          ${_MKTARGET_COMPILE}
           ${COMPILE.c} ${DEBUGFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} -g ${.IMPSRC} -o ${.TARGET}
   
   .c.pico:
           ${_MKTARGET_COMPILE}
           ${COMPILE.c} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${CSHLIBFLAGS} ${.IMPSRC} -o ${.TARGET}
   .if !defined(CSHLIBFLAGS) || empty(CSHLIBFLAGS:M*-g*)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   .endif
   
   .cc.o .cpp.o .cxx.o .C.o:
           ${_MKTARGET_COMPILE}
           ${COMPILE.cc} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
   .if !defined(CFLAGS) || empty(CFLAGS:M*-g*)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   .endif
   
   .cc.po .cpp.po .cxx.po .C.po:
           ${_MKTARGET_COMPILE}
           ${COMPILE.cc} ${PROFFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} -pg ${.IMPSRC} -o ${.TARGET}
   .if !defined(CFLAGS) || empty(CFLAGS:M*-g*)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   .endif
   
   .cc.go .cpp.go .cxx.go .C.go:
           ${_MKTARGET_COMPILE}
           ${COMPILE.cc} ${DEBUGFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} -g ${.IMPSRC} -o ${.TARGET}
   
   .cc.pico .cpp.pico .cxx.pico .C.pico:
           ${_MKTARGET_COMPILE}
           ${COMPILE.cc} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${CSHLIBFLAGS} ${.IMPSRC} -o ${.TARGET}
   .if !defined(CSHLIBFLAGS) || empty(CSHLIBFLAGS:M*-g*)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   .endif
   
   .f.o:
           ${_MKTARGET_COMPILE}
           ${COMPILE.f} ${.IMPSRC} -o ${.TARGET}
   .if defined(CTFCONVERT)
           ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
   .endif
   .if !defined(FOPTS) || empty(FOPTS:M*-g*)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   .endif
   
   .f.po:
           ${_MKTARGET_COMPILE}
           ${COMPILE.f} ${PROFFLAGS} -pg ${.IMPSRC} -o ${.TARGET}
   .if defined(CTFCONVERT)
           ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
   .endif
   .if !defined(FOPTS) || empty(FOPTS:M*-g*)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   .endif
   
   .f.go:
           ${_MKTARGET_COMPILE}
           ${COMPILE.f} ${DEBUGFLAGS} -g ${.IMPSRC} -o ${.TARGET}
   
   .f.pico:
           ${_MKTARGET_COMPILE}
           ${COMPILE.f} ${FPICFLAGS} ${.IMPSRC} -o ${.TARGET}
   .if !defined(FOPTS) || empty(FOPTS:M*-g*)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   .endif
   
   .f.ln:
           ${_MKTARGET_COMPILE}
           @echo Skipping lint for Fortran libraries.
   
   .m.o:
           ${_MKTARGET_COMPILE}
           ${COMPILE.m} ${OBJCOPTS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
   .if defined(CTFCONVERT)
           ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
   .endif
   .if !defined(OBJCFLAGS) || empty(OBJCFLAGS:M*-g*)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   .endif
   
   .m.po:
           ${_MKTARGET_COMPILE}
           ${COMPILE.m} ${PROFFLAGS} -pg ${OBJCOPTS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
   .if defined(CTFCONVERT)
           ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
   .endif
   .if !defined(OBJCFLAGS) || empty(OBJCFLAGS:M*-g*)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   .endif
   
   .m.go:
           ${_MKTARGET_COMPILE}
           ${COMPILE.m} ${DEBUGFLAGS} -g ${OBJCOPTS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
   .if !defined(OBJCFLAGS) || empty(OBJCFLAGS:M*-g*)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   .endif
   
   .m.pico:
           ${_MKTARGET_COMPILE}
           ${COMPILE.m} ${CSHLIBFLAGS} ${OBJCOPTS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
   .if !defined(OBJCFLAGS) || empty(OBJCFLAGS:M*-g*)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   .endif
   
   .s.o:
           ${_MKTARGET_COMPILE}
           ${COMPILE.s} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
   .if defined(CTFCONVERT)
           ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
   .endif
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   
   .S.o:
           ${_MKTARGET_COMPILE}
           ${COMPILE.S} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
   .if defined(CTFCONVERT)
           ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
   .endif
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   
   .s.po:
           ${_MKTARGET_COMPILE}
           ${COMPILE.s} ${PROFFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
   .if defined(CTFCONVERT)
           ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
   .endif
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   
   .S.po:
           ${_MKTARGET_COMPILE}
           ${COMPILE.S} ${PROFFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
   .if defined(CTFCONVERT)
           ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
   .endif
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   
   .s.go:
           ${_MKTARGET_COMPILE}
           ${COMPILE.s} ${DEBUGFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
   
   .S.go:
           ${_MKTARGET_COMPILE}
           ${COMPILE.S} ${DEBUGFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
   
   .s.pico:
           ${_MKTARGET_COMPILE}
           ${COMPILE.s} ${CAPICFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   
   .S.pico:
           ${_MKTARGET_COMPILE}
           ${COMPILE.S} ${CAPICFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   
   # Declare a few variables to make our life easier later.
   _LIB:=${_LIB_PREFIX}${LIB}
   _LIB.a:=${_LIB}.a
   _LIB_p.a:=${_LIB}_p.a
   _LIB_g.a:=${_LIB}_g.a
   _LIB_pic.a:=${_LIB}_pic.a
   _LIB.ln:=llib-l${LIB}.ln
   
   .if ${MKPIC} != "no" && defined(SHLIB_FULLVERSION)
   _LIB.so:=${_LIB}.so
   _LIB.so.major:=${_LIB}.so.${SHLIB_MAJOR}
   _LIB.so.full:=${_LIB}.so.${SHLIB_FULLVERSION}
   .if ${MKDEBUG} != "no"
   _LIB.so.debug:=${_LIB.so.full}.debug
   .endif
   .endif
   
   _DEST.LIB:=${DESTDIR}${LIBDIR}
   _DEST.OBJ:=${DESTDIR}${_LIBSODIR}
   _DEST.LINT:=${DESTDIR}${LINTLIBDIR}
   _DEST.DEBUG:=${DESTDIR}${DEBUGDIR}${LIBDIR}
   
   .if defined(LIB)                                                        # {
   .if (${MKPIC} == "no" || (defined(LDSTATIC) && ${LDSTATIC} != "") \
           || ${MKLINKLIB} != "no") && ${MKSTATICLIB} != "no"
   _LIBS=${_LIB.a}
   .else
   _LIBS=
   .endif
   
   .if ${LIBISPRIVATE} != "no" \
      && (defined(USE_COMBINE) && ${USE_COMBINE} == "yes" \
      && !defined(NOCOMBINE))                                              # {
   .for f in ${SRCS:N*.h:N*.sh:C/\.[yl]$/.c/g}
   COMBINEFLAGS.${LIB}.$f := ${CPPFLAGS.$f:D1} ${CPUFLAGS.$f:D2} ${COPTS.$f:D3} ${OBJCOPTS.$f:D4} ${CXXFLAGS.$f:D5}
   .if empty(COMBINEFLAGS.${LIB}.${f}) && !defined(NOCOMBINE.$f)
   COMBINESRCS+=   ${f}
   NODPSRCS+=      ${f}
   .else
   OBJS+=          ${f:R:S/$/.o/}
   .endif
   .endfor
   
   .if !empty(COMBINESRCS)
   OBJS+=          ${_LIB}_combine.o
   ${_LIB}_combine.o: ${COMBINESRCS}
           ${_MKTARGET_COMPILE}
           ${COMPILE.c} -MD --combine ${.ALLSRC} -o ${.TARGET}
   .if !defined(CFLAGS) || empty(CFLAGS:M*-g*)
           ${OBJCOPY} -x ${.TARGET}
   .endif
   
   CLEANFILES+=    ${_LIB}_combine.d
   
   .if exists("${_LIB}_combine.d")
   .include "${_LIB}_combine.d"
   .endif
   .endif   # empty(XSRCS.${LIB})
   .else                                                   # } {
   OBJS+=${SRCS:N*.h:N*.sh:R:S/$/.o/g}
   .endif                                                  # }
   
   STOBJS+=${OBJS}
   
   LOBJS+=${LSRCS:.c=.ln} ${SRCS:M*.c:.c=.ln}
   
   .if ${LIBISPRIVATE} != "no"
   # No installation is required
   libinstall::
   .endif
   
   .if ${MKDEBUGLIB} != "no"
   _LIBS+=${_LIB_g.a}
   GOBJS+=${OBJS:.o=.go}
   DEBUGFLAGS?=-DDEBUG
   .endif
   
   .if ${MKPROFILE} != "no"
   _LIBS+=${_LIB_p.a}
   POBJS+=${OBJS:.o=.po}
   PROFFLAGS?=-DGPROF -DPROF
   .endif
   
   .if ${MKPIC} != "no"                                                    # {
   .if ${MKPICLIB} == "no"
   .if ${MKSHLIBOBJS} != "no"
   # make _pic.a, which isn't really pic,
   # since it's needed for making shared lib.
   # but don't install it.
   SOLIB=${_LIB_pic.a}
   SOBJS+=${OBJS:.o=.pico}
   .else
   SOLIB=${_LIB.a}
 .endif  .endif
   .else
   SOLIB=${_LIB_pic.a}
   _LIBS+=${SOLIB}
   SOBJS+=${OBJS:.o=.pico}
   .endif
   .if defined(SHLIB_FULLVERSION)
   _LIBS+=${_LIB.so.full}
   .endif
   .endif                                                                  # }
   
   .if ${MKLINT} != "no" && !empty(LOBJS)
   _LIBS+=${_LIB.ln}
   .endif
   
   ALLOBJS=
   .if (${MKPIC} == "no" || (defined(LDSTATIC) && ${LDSTATIC} != "") \
           || ${MKLINKLIB} != "no") && ${MKSTATICLIB} != "no"
   ALLOBJS+=${STOBJS}
   .endif
   ALLOBJS+=${POBJS} ${SOBJS}
   .if ${MKLINT} != "no" && !empty(LOBJS)
   ALLOBJS+=${LOBJS}
   .endif
   .else   # !defined(LIB)                                                 # } {
   LOBJS=
   SOBJS=
   .endif  # !defined(LIB)                                                 # }
   
   _YLSRCS=        ${SRCS:M*.[ly]:C/\..$/.c/} ${YHEADER:D${SRCS:M*.y:.y=.h}}
   
   .NOPATH: ${ALLOBJS} ${_LIBS} ${_YLSRCS}
   
   realall: ${SRCS} ${ALLOBJS:O} ${_LIBS} ${_LIB.so.debug}
   
   MKARZERO?=no
   
   .if ${MKARZERO} == "yes"
   _ARFL=crsD
   _ARRANFL=sD
   _INSTRANLIB=
   .else
   _ARFL=crs
   _ARRANFL=s
   _INSTRANLIB=${empty(PRESERVE):?-a "${RANLIB} -t":}
   .endif
   
   # If you change this, please consider reflecting the change in
   # the override in sys/rump/Makefile.rump.
   .if !target(__archivebuild)
   __archivebuild: .USE
           ${_MKTARGET_BUILD}
           rm -f ${.TARGET}
           ${AR} ${_ARFL} ${.TARGET} `NM=${NM} ${LORDER} ${.ALLSRC:M*o} | ${TSORT}`
   .endif
   
   .if !target(__archiveinstall)
   __archiveinstall: .USE
           ${_MKTARGET_INSTALL}
           ${INSTALL_FILE} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
               ${_INSTRANLIB} ${.ALLSRC} ${.TARGET}
   .endif
   
   __archivesymlinkpic: .USE
           ${_MKTARGET_INSTALL}
           ${INSTALL_SYMLINK} ${.ALLSRC} ${.TARGET}
   
   DPSRCS+=        ${_YLSRCS}
   CLEANFILES+=    ${_YLSRCS}
   
   ${STOBJS} ${POBJS} ${GOBJS} ${SOBJS} ${LOBJS}: ${DPSRCS}
   
   ${_LIB.a}:: ${STOBJS} __archivebuild
   
   ${_LIB_p.a}:: ${POBJS} __archivebuild
   
   ${_LIB_pic.a}:: ${SOBJS} __archivebuild
   
   ${_LIB_g.a}:: ${GOBJS} __archivebuild
   
 .include <bsd.obj.mk>  
   _LIBLDOPTS=
   .if ${SHLIBDIR} != "/usr/lib"
   _LIBLDOPTS+=    -Wl,-rpath,${SHLIBDIR} \
                   -L=${SHLIBDIR}
   .elif ${SHLIBINSTALLDIR} != "/usr/lib"
   _LIBLDOPTS+=    -Wl,-rpath-link,${DESTDIR}${SHLIBINSTALLDIR} \
                   -L=${SHLIBINSTALLDIR}
   .endif
   
   # gcc -shared now adds -lc automatically. For libraries other than libc and
   # libgcc* we add as a dependency the installed shared libc. For libc and
   # libgcc* we avoid adding libc as a dependency by using -nostdlib. Note that
   # -Xl,-nostdlib is not enough because we want to tell the compiler-driver not
   # to add standard libraries, not the linker.
   .if !defined(LIB)
   .if !empty(LIBC_SO)
   DPLIBC ?= ${DESTDIR}${LIBC_SO}
   .endif
   .else
   .if ${LIB} != "c" && ${LIB:Mgcc*} == ""
   .if !empty(LIBC_SO)
   DPLIBC ?= ${DESTDIR}${LIBC_SO}
   .endif
   .else
   LDLIBC ?= -nodefaultlibs
   .if ${LIB} == "c"
   LDADD+= -lgcc
   .endif
   .endif
   .endif
   
   .if ${LIBISCXX} != "no"
   LIBCC:= ${CXX}
   .else
   LIBCC:= ${CC}
   .endif
   
   _LDADD.${_LIB}= ${LDADD} ${LDADD.${_LIB}}
   _LDFLAGS.${_LIB}=       ${LDFLAGS} ${LDFLAGS.${_LIB}}
   
   ${_LIB.so.full}: ${SOLIB} ${DPADD} ${DPLIBC} \
       ${SHLIB_LDSTARTFILE} ${SHLIB_LDENDFILE}
           ${_MKTARGET_BUILD}
           rm -f ${.TARGET}
           ${LIBCC} ${LDLIBC} -Wl,-x -shared ${SHLIB_SHFLAGS} \
               ${_LDFLAGS.${_LIB}} -o ${.TARGET} ${_LIBLDOPTS} \
               -Wl,--whole-archive ${SOLIB} \
               -Wl,--no-whole-archive ${_LDADD.${_LIB}}
   #  We don't use INSTALL_SYMLINK here because this is just
   #  happening inside the build directory/objdir. XXX Why does
   #  this spend so much effort on libraries that aren't live??? XXX
   .if defined(SHLIB_FULLVERSION) && defined(SHLIB_MAJOR) && \
       "${SHLIB_FULLVERSION}" != "${SHLIB_MAJOR}"
           ${HOST_LN} -sf ${_LIB.so.full} ${_LIB.so.major}.tmp
           mv -f ${_LIB.so.major}.tmp ${_LIB.so.major}
   .endif
           ${HOST_LN} -sf ${_LIB.so.full} ${_LIB.so}.tmp
           mv -f ${_LIB.so}.tmp ${_LIB.so}
   .if ${MKSTRIPIDENT} != "no"
           ${OBJCOPY} -R .ident ${.TARGET}
   .endif
   
   .if defined(_LIB.so.debug)
   ${_LIB.so.debug}: ${_LIB.so.full}
           ${_MKTARGET_CREATE}
           (  ${OBJCOPY} --only-keep-debug ${_LIB.so.full} ${_LIB.so.debug} \
           && ${OBJCOPY} --strip-debug -p -R .gnu_debuglink \
                   --add-gnu-debuglink=${_LIB.so.debug} ${_LIB.so.full} \
           ) || (rm -f ${.TARGET}; false)
   .endif
   
   .if !empty(LOBJS)                                                       # {
   LLIBS?=         -lc
   ${_LIB.ln}: ${LOBJS}
           ${_MKTARGET_COMPILE}
           rm -f ${.TARGET}
   .if defined(DESTDIR)
           ${LINT} -C${LIB} ${.ALLSRC} -L${DESTDIR}/usr/libdata ${LLIBS}
   .else
           ${LINT} -C${LIB} ${.ALLSRC} ${LLIBS}
   .endif
   .endif                                                                  # }
   
   lint: ${LOBJS}
   .if defined(LOBJS) && !empty(LOBJS)
           ${LINT} ${LINTFLAGS} ${LOBJS}
   .endif
   
   
   # If the number of entries in CLEANFILES is too large, then the
   # commands in bsd.clean.mk encounter errors like "exec(/bin/sh)
   # failed (Argument list too long)".  Avoid that by splitting the
   # files to clean into several lists using different variable names.
   # __cleanuse is an internal target in bsd.clean.mk; the way we
   # use it here mimics the way it's used by the clean target in
   # bsd.clean.mk.
   #
   clean: libclean1 libclean2 libclean3 libclean4 libclean5
   libclean1: .PHONY .MADE __cleanuse LIBCLEANFILES1
   libclean2: .PHONY .MADE __cleanuse LIBCLEANFILES2
   libclean3: .PHONY .MADE __cleanuse LIBCLEANFILES3
   libclean4: .PHONY .MADE __cleanuse LIBCLEANFILES4
   libclean5: .PHONY .MADE __cleanuse LIBCLEANFILES5
   CLEANFILES+= a.out [Ee]rrs mklog core *.core
   LIBCLEANFILES1+= ${_LIB.a}   ${STOBJS} ${STOBJS:=.tmp}
   LIBCLEANFILES2+= ${_LIB_p.a} ${POBJS}  ${POBJS:=.tmp}
   LIBCLEANFILES3+= ${_LIB_g.a} ${GOBJS}  ${GOBJS:=.tmp}
   LIBCLEANFILES4+= ${_LIB_pic.a}
   .if ${MKPIC} != "no" && defined(SHLIB_FULLVERSION)
   LIBCLEANFILES4+= ${_LIB.so}.* ${_LIB.so} ${_LIB.so.debug}
   .endif
   LIBCLEANFILES4+= ${SOBJS} ${SOBJS:=.tmp}
   LIBCLEANFILES5+= ${_LIB.ln} ${LOBJS}
   
   .if !target(libinstall)                                                 # {
   # Make sure it gets defined, in case MKPIC==no && MKLINKLIB==no
   libinstall::
   
   .if ${MKLINKLIB} != "no" && ${MKSTATICLIB} != "no"
   libinstall:: ${_DEST.LIB}/${_LIB.a}
   .PRECIOUS: ${_DEST.LIB}/${_LIB.a}
   
   .if ${MKUPDATE} == "no"
   .if !defined(BUILD) && !make(all) && !make(${_LIB.a})
   ${_DEST.LIB}/${_LIB.a}! .MADE
   .endif
   ${_DEST.LIB}/${_LIB.a}! ${_LIB.a} __archiveinstall
   .else
   .if !defined(BUILD) && !make(all) && !make(${_LIB.a})
   ${_DEST.LIB}/${_LIB.a}: .MADE
   .endif
   ${_DEST.LIB}/${_LIB.a}: ${_LIB.a} __archiveinstall
   .endif
   .endif
   
   .if ${MKPROFILE} != "no"
   libinstall:: ${_DEST.LIB}/${_LIB_p.a}
   .PRECIOUS: ${_DEST.LIB}/${_LIB_p.a}
   
   .if ${MKUPDATE} == "no"
   .if !defined(BUILD) && !make(all) && !make(${_LIB_p.a})
   ${_DEST.LIB}/${_LIB_p.a}! .MADE
   .endif
   ${_DEST.LIB}/${_LIB_p.a}! ${_LIB_p.a} __archiveinstall
   .else
   .if !defined(BUILD) && !make(all) && !make(${_LIB_p.a})
   ${_DEST.LIB}/${_LIB_p.a}: .MADE
   .endif
   ${_DEST.LIB}/${_LIB_p.a}: ${_LIB_p.a} __archiveinstall
   .endif
   .endif
   
   .if ${MKDEBUGLIB} != "no"
   libinstall:: ${_DEST.LIB}/${_LIB_g.a}
   .PRECIOUS: ${_DEST.LIB}/${_LIB_g.a}
   
   .if ${MKUPDATE} == "no"
   .if !defined(BUILD) && !make(all) && !make(${_LIB_g.a})
   ${_DEST.LIB}/${_LIB_g.a}! .MADE
   .endif
   ${_DEST.LIB}/${_LIB_g.a}! ${_LIB_g.a} __archiveinstall
   .else
   .if !defined(BUILD) && !make(all) && !make(${LIB_g.a})
   ${_DEST.LIB}/${_LIB_g.a}: .MADE
   .endif
   ${_DEST.LIB}/${_LIB_g.a}: ${_LIB_g.a} __archiveinstall
   .endif
   .endif
   
   .if ${MKPIC} != "no" && ${MKPICINSTALL} != "no"
   libinstall:: ${_DEST.LIB}/${_LIB_pic.a}
   .PRECIOUS: ${_DEST.LIB}/${_LIB_pic.a}
   
   .if ${MKUPDATE} == "no"
   .if !defined(BUILD) && !make(all) && !make(${_LIB_pic.a})
   ${_DEST.LIB}/${_LIB_pic.a}! .MADE
   .endif
   .if ${MKPICLIB} == "no"
   ${_DEST.LIB}/${_LIB_pic.a}! ${_LIB.a} __archivesymlinkpic
   .else
   ${_DEST.LIB}/${_LIB_pic.a}! ${_LIB_pic.a} __archiveinstall
   .endif
   .else
   .if !defined(BUILD) && !make(all) && !make(${_LIB_pic.a})
   ${_DEST.LIB}/${_LIB_pic.a}: .MADE
   .endif
   .if ${MKPICLIB} == "no"
   ${_DEST.LIB}/${_LIB_pic.a}: ${_LIB.a} __archivesymlinkpic
   .else
   ${_DEST.LIB}/${_LIB_pic.a}: ${_LIB_pic.a} __archiveinstall
   .endif
   .endif
   .endif
   
   .if ${MKPIC} != "no" && defined(SHLIB_FULLVERSION)
   
   libinstall:: ${_DEST.OBJ}/${_LIB.so.full}
   .PRECIOUS: ${_DEST.OBJ}/${_LIB.so.full}
   
   .if ${MKUPDATE} == "no"
   .if !defined(BUILD) && !make(all) && !make(${_LIB.so.full})
   ${_DEST.OBJ}/${_LIB.so.full}! .MADE
   .endif
   ${_DEST.OBJ}/${_LIB.so.full}! ${_LIB.so.full}
   .else
   .if !defined(BUILD) && !make(all) && !make(${_LIB.so.full})
   ${_DEST.OBJ}/${_LIB.so.full}: .MADE
   .endif
   ${_DEST.OBJ}/${_LIB.so.full}: ${_LIB.so.full}
   .endif
           ${_MKTARGET_INSTALL}
           ${INSTALL_FILE} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
               ${.ALLSRC} ${.TARGET}
   .if ${_LIBSODIR} != ${LIBDIR}
           ${INSTALL_SYMLINK} -l r ${_DEST.OBJ}/${_LIB.so.full} \
               ${_DEST.LIB}/${_LIB.so.full}
   .endif
   .if defined(SHLIB_FULLVERSION) && defined(SHLIB_MAJOR) && \
       "${SHLIB_FULLVERSION}" != "${SHLIB_MAJOR}"
           ${INSTALL_SYMLINK} ${_LIB.so.full} ${_DEST.OBJ}/${_LIB.so.major}
   .if ${_LIBSODIR} != ${LIBDIR}
           ${INSTALL_SYMLINK} -l r ${_DEST.OBJ}/${_LIB.so.full} \
               ${_DEST.LIB}/${_LIB.so.major}
   .endif
   .endif
   .if ${MKLINKLIB} != "no"
           ${INSTALL_SYMLINK}  ${_LIB.so.full} ${_DEST.OBJ}/${_LIB.so}
   .if ${_LIBSODIR} != ${LIBDIR}
           ${INSTALL_SYMLINK} -l r ${_DEST.OBJ}/${_LIB.so.full} \
               ${_DEST.LIB}/${_LIB.so}
   .endif
   .endif
   .endif
   
   .if defined(_LIB.so.debug)
   libinstall:: ${_DEST.DEBUG}/${_LIB.so.debug}
   .PRECIOUS: ${_DEST.DEBUG}/${_LIB.so.debug}
   
   ${_DEST.DEBUG}/${_LIB.so.debug}: ${_LIB.so.debug}
           ${_MKTARGET_INSTALL}
           ${INSTALL_FILE} -o ${DEBUGOWN} -g ${DEBUGGRP} -m ${DEBUGMODE} \
               ${.ALLSRC} ${.TARGET}
   .endif
   
   .if ${MKLINT} != "no" && !empty(LOBJS)
   libinstall:: ${_DEST.LINT}/${_LIB.ln}
   .PRECIOUS: ${_DEST.LINT}/${_LIB.ln}
   
   .if ${MKUPDATE} == "no"
   .if !defined(BUILD) && !make(all) && !make(${_LIB.ln})
   ${_DEST.LINT}/${_LIB.ln}! .MADE
   .endif
   ${_DEST.LINT}/${_LIB.ln}! ${_LIB.ln}
   .else
   .if !defined(BUILD) && !make(all) && !make(${_LIB.ln})
   ${_DEST.LINT}/${_LIB.ln}: .MADE
   .endif
   ${_DEST.LINT}/${_LIB.ln}: ${_LIB.ln}
   .endif
           ${_MKTARGET_INSTALL}
           ${INSTALL_FILE} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
                   ${.ALLSRC} ${_DEST.LINT}
   .endif
   .endif  # !target(libinstall)                                           # }
   
   ##### Pull in related .mk logic
   LINKSOWN?= ${LIBOWN}
   LINKSGRP?= ${LIBGRP}
   LINKSMODE?= ${LIBMODE}
   .include <bsd.man.mk>
   .include <bsd.nls.mk>
   .include <bsd.files.mk>
   .include <bsd.inc.mk>
   .include <bsd.links.mk>
 .include <bsd.dep.mk>  .include <bsd.dep.mk>
   .include <bsd.clang-analyze.mk>
   .include <bsd.clean.mk>
   
   ${TARGETS}:     # ensure existence

Legend:
Removed from v.1.47  
changed lines
  Added in v.1.324.2.2

CVSweb <webmaster@jp.NetBSD.org>