[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.169.2.1 and 1.357

version 1.169.2.1, 2000/06/29 23:35:08 version 1.357, 2015/06/02 23:00:25
Line 1 
Line 1 
 #       $NetBSD$  #       $NetBSD$
 #       @(#)bsd.lib.mk  8.3 (Berkeley) 4/22/94  #       @(#)bsd.lib.mk  8.3 (Berkeley) 4/22/94
   
 .if !target(__initialized__)  .include <bsd.init.mk>
 __initialized__:  .include <bsd.shlib.mk>
 .if exists(${.CURDIR}/../Makefile.inc)  .include <bsd.gcc.mk>
 .include "${.CURDIR}/../Makefile.inc"  # Pull in <bsd.sys.mk> here so we can override its .c.o rule
 .endif  .include <bsd.sys.mk>
 .include <bsd.own.mk>  
 .include <bsd.obj.mk>  LIBISMODULE?=   no
 .include <bsd.depall.mk>  LIBISPRIVATE?=  no
 .MAIN:          all  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  .endif
   
 .PHONY:         checkver cleanlib libinstall  ##### Basic targets
   .PHONY:         checkver libinstall
 realinstall:    checkver libinstall  realinstall:    checkver libinstall
 clean cleandir distclean: cleanlib  
   
 .if exists(${SHLIB_VERSION_FILE})  ##### 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
   
   ##### 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 .d
   
   .if !defined(SHLIB_MAJOR) && exists(${SHLIB_VERSION_FILE})              # {
 SHLIB_MAJOR != . ${SHLIB_VERSION_FILE} ; echo $$major  SHLIB_MAJOR != . ${SHLIB_VERSION_FILE} ; echo $$major
 SHLIB_MINOR != . ${SHLIB_VERSION_FILE} ; echo $$minor  SHLIB_MINOR != . ${SHLIB_VERSION_FILE} ; echo $$minor
   SHLIB_TEENY != . ${SHLIB_VERSION_FILE} ; echo $$teeny
   
   DPADD+= ${SHLIB_VERSION_FILE}
   
 # Check for higher installed library versions.  # Check for higher installed library versions.
 .if !defined(NOCHECKVER) && !defined(NOCHECKVER_${LIB}) && \  .if !defined(NOCHECKVER) && !defined(NOCHECKVER_${LIB}) && \
         exists(${BSDSRCDIR}/lib/checkver)          exists(${NETBSDSRCDIR}/lib/checkver)
 checkver:  checkver:
         @(cd ${.CURDIR} && \          @(cd "${.CURDIR}" && \
                 ${BSDSRCDIR}/lib/checkver -v ${SHLIB_VERSION_FILE} \              HOST_SH=${HOST_SH:Q} AWK=${TOOL_AWK:Q} \
                     -d ${DESTDIR}${LIBDIR} ${LIB})              ${HOST_SH} ${NETBSDSRCDIR}/lib/checkver -v ${SHLIB_VERSION_FILE} \
 .else                      -d ${_DEST.OBJ} ${LIB})
   .endif
   .endif                                                                  # }
   
   .if !target(checkver)
 checkver:  checkver:
 .endif  .endif
   
 print-shlib-major:  print-shlib-major:
   .if defined(SHLIB_MAJOR) && ${MKPIC} != "no"
         @echo ${SHLIB_MAJOR}          @echo ${SHLIB_MAJOR}
   .else
           @false
   .endif
   
 print-shlib-minor:  print-shlib-minor:
   .if defined(SHLIB_MINOR) && ${MKPIC} != "no"
         @echo ${SHLIB_MINOR}          @echo ${SHLIB_MINOR}
 .else  .else
 checkver:  
   
 print-shlib-major:  
         @false          @false
   .endif
   
 print-shlib-minor:  print-shlib-teeny:
   .if defined(SHLIB_TEENY) && ${MKPIC} != "no"
           @echo ${SHLIB_TEENY}
   .else
         @false          @false
 .endif  .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                                                                  # }
   
 # add additional suffixes not exported.  # add additional suffixes not exported.
 # .po is used for profiling object files.  # .po is used for profiling object files.
 # .so is used for PIC object files.  # .pico is used for PIC object files.
 .SUFFIXES: .out .a .ln .so .po .o .s .S .c .cc .C .m .F .f .r .y .l .cl .p .h  .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  .SUFFIXES: .sh .m4 .m
   
   
 # Set PICFLAGS to cc flags for producing position-independent code,  # Set PICFLAGS to cc flags for producing position-independent code,
 # if not already set.  Includes -DPIC, if required.  # if not already set.
   
 # Data-driven table using make variables to control how shared libraries  # Data-driven table using make variables to control how shared libraries
 # are built for different platforms and object formats.  # are built for different platforms and object formats.
 # OBJECT_FMT:           currently either "ELF" or "a.out", from <bsd.own.mk>  # 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  # SHLIB_SOVERSION:      version number to be compiled into a shared library
 #                       via -soname. Usualy ${SHLIB_MAJOR} on ELF.  #                       via -soname. Usualy ${SHLIB_MAJOR} on ELF.
 #                       NetBSD/pmax used to use ${SHLIB_MAJOR}.{SHLIB-MINOR}.  #                       NetBSD/pmax used to use ${SHLIB_MAJOR}[.${SHLIB_MINOR}
   #                       [.${SHLIB_TEENY}]]
 # SHLIB_SHFLAGS:        Flags to tell ${LD} to emit shared library.  # SHLIB_SHFLAGS:        Flags to tell ${LD} to emit shared library.
 #                       with ELF, also set shared-lib version for ld.so.  #                       with ELF, also set shared-lib version for ld.so.
 # SHLIB_LDSTARTFILE:    support .o file, call C++ file-level constructors  # SHLIB_LDSTARTFILE:    support .o file, call C++ file-level constructors
 # SHLIB_LDENDFILE:      support .o file, call C++ file-level destructors  # SHLIB_LDENDFILE:      support .o file, call C++ file-level destructors
 # CPPICFLAGS:           flags for ${CPP} to preprocess .[sS] files for ${AS}  
 # CPICFLAGS:            flags for ${CC} to compile .[cC] files to .so objects.  
 # CAPICFLAGS            flags for {$CC} to compiling .[Ss] files  
 #                       (usually just ${CPPPICFLAGS} ${CPICFLAGS})  
 # APICFLAGS:            flags for ${AS} to assemble .[sS] to .so objects.  
   
 .if ${MACHINE_ARCH} == "alpha"  
                 # Alpha-specific shared library flags  
 CPICFLAGS ?= -fPIC -DPIC  
 CPPPICFLAGS?= -DPIC  
 CAPICFLAGS?= ${CPPPICFLAGS} ${CPICFLAGS}  
 APICFLAGS ?=  
 .elif ${MACHINE_ARCH} == "mipsel" || ${MACHINE_ARCH} == "mipseb"  
                 # mips-specific shared library flags  
   
 # On mips, all libs are compiled with ABIcalls, not just sharedlibs.  
 MKPICLIB= no  
   
 # so turn shlib PIC flags on for ${AS}.  
 AINC+=-DABICALLS  
 AFLAGS+= -fPIC  
 AS+=    -KPIC  
   
 .elif ${MACHINE_ARCH} == "sparc" && ${OBJECT_FMT} == "ELF"  
   
 CPICFLAGS ?= -fPIC -DPIC  
 CPPPICFLAGS?= -DPIC  
 CAPICFLAGS?= ${CPPPICFLAGS} ${CPICFLAGS}  
 APICFLAGS ?= -KPIC  
   
 .else  PICFLAGS ?= -fPIC
   
 # Platform-independent flags for NetBSD a.out shared libraries (and PowerPC)  .if ${MKPICLIB} != "no"
 SHLIB_LDSTARTFILE=  CSHLIBFLAGS+= ${PICFLAGS}
 SHLIB_LDENDFILE=  .endif
 SHLIB_SHFLAGS=  
 SHLIB_SOVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR}  
 CPICFLAGS?= -fPIC -DPIC  
 CPPPICFLAGS?= -DPIC  
 CAPICFLAGS?= ${CPPPICFLAGS} ${CPICFLAGS}  
 APICFLAGS?= -k  
   
   .if defined(CSHLIBFLAGS) && !empty(CSHLIBFLAGS)
   MKSHLIBOBJS= yes
   .else
   MKSHLIBOBJS= no
 .endif  .endif
   
 MKPICLIB?= yes  .if (defined(MKDEBUG) && (${MKDEBUG} != "no")) || \
       (defined(CFLAGS) && !empty(CFLAGS:M*-g*))
   # We only add -g to the shared library objects
   # because we don't currently split .a archives.
   CSHLIBFLAGS+=   -g
   .if ${LIBISPRIVATE} == "yes"
   CFLAGS+=        -g
   .endif
   .endif
   
 # Platform-independent linker flags for ELF shared libraries  # Platform-independent linker flags for ELF shared libraries
 .if ${OBJECT_FMT} == "ELF"  SHLIB_SOVERSION=        ${SHLIB_MAJOR}
 SHLIB_SOVERSION=${SHLIB_MAJOR}  SHLIB_SHFLAGS=          -Wl,-soname,${_LIB}.so.${SHLIB_SOVERSION}
 SHLIB_SHFLAGS=-soname lib${LIB}.so.${SHLIB_SOVERSION}  .if !defined(SHLIB_WARNTEXTREL) || ${SHLIB_WARNTEXTREL} != "no"
 SHLIB_LDSTARTFILE= ${DESTDIR}/usr/lib/crtbeginS.o  SHLIB_SHFLAGS+=         -Wl,--warn-shared-textrel
 SHLIB_LDENDFILE= ${DESTDIR}/usr/lib/crtendS.o  .endif
 .endif  .if !defined(SHLIB_MKMAP) || ${SHLIB_MKMAP} != "no"
   SHLIB_SHFLAGS+=         -Wl,-Map=${_LIB}.so.${SHLIB_SOVERSION}.map
   .endif
   CLEANFILES+=            ${_LIB}.so.${SHLIB_SOVERSION}.map
   SHLIB_LDSTARTFILE?=     ${_GCC_CRTI} ${_GCC_CRTBEGINS}
   SHLIB_LDENDFILE?=       ${_GCC_CRTENDS} ${_GCC_CRTN}
   
 CFLAGS+=        ${COPTS}  CFLAGS+=        ${COPTS}
   OBJCFLAGS+=     ${OBJCOPTS}
   AFLAGS+=        ${COPTS}
   FFLAGS+=        ${FOPTS}
   
   .if defined(CTFCONVERT)
   .if defined(CFLAGS) && !empty(CFLAGS:M*-g*)
   CTFFLAGS+=      -g
   .if defined(HAVE_GCC) && ${HAVE_GCC} >= 48
   #CFLAGS+=       -gdwarf-2
   .endif
   .endif
   .endif
   
   LIBSTRIPAOBJS=  yes
   .if !defined(CFLAGS) || empty(CFLAGS:M*-g*)
   LIBSTRIPCOBJS=  yes
   .endif
   .if !defined(OBJCFLAGS) || empty(OBJCFLAGS:M*-g*)
   LIBSTRIPOBJCOBJS=       yes
   .endif
   .if !defined(FFLAGS) || empty(FFLAGS:M*-g*)
   LIBSTRIPFOBJS=  yes
   .endif
   .if !defined(CSHLIBFLAGS) || empty(CSHLIBFLAGS:M*-g*)
   LIBSTRIPSHLIBOBJS=      yes
   .endif
   
 .c.o:  .c.o:
 .if defined(COPTS) && !empty(COPTS:M*-g*)          ${_MKTARGET_COMPILE}
         ${COMPILE.c} ${.IMPSRC}          ${COMPILE.c} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
 .else  .if defined(CTFCONVERT)
         @echo ${COMPILE.c:Q} ${.IMPSRC}          ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
         @${COMPILE.c} ${.IMPSRC} -o ${.TARGET}.o  .endif
         @${LD} -x -r ${.TARGET}.o -o ${.TARGET}  .if defined(LIBSTRIPCOBJS)
         @rm -f ${.TARGET}.o          ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
 .endif  .endif
   
 .c.po:  .c.po:
 .if defined(COPTS) && !empty(COPTS:M*-g*)          ${_MKTARGET_COMPILE}
         ${COMPILE.c} -pg ${.IMPSRC} -o ${.TARGET}          ${COMPILE.c} ${PROFFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} -pg ${.IMPSRC} -o ${.TARGET}
 .else  .if defined(CTFCONVERT)
         @echo ${COMPILE.c:Q} -pg ${.IMPSRC} -o ${.TARGET}          ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
         @${COMPILE.c} -pg ${.IMPSRC} -o ${.TARGET}.o  .endif
         @${LD} -X -r ${.TARGET}.o -o ${.TARGET}  .if defined(LIBSTRIPCOBJS)
         @rm -f ${.TARGET}.o          ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
 .endif  .endif
   
 .c.so:  .c.go:
 .if defined(COPTS) && !empty(COPTS:M*-g*)          ${_MKTARGET_COMPILE}
         ${COMPILE.c} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}          ${COMPILE.c} ${DEBUGFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} -g ${.IMPSRC} -o ${.TARGET}
 .else  
         @echo ${COMPILE.c:Q} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}  .c.pico:
         @${COMPILE.c} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}.o          ${_MKTARGET_COMPILE}
         @${LD} -x -r ${.TARGET}.o -o ${.TARGET}          ${COMPILE.c} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${CSHLIBFLAGS} ${.IMPSRC} -o ${.TARGET}
         @rm -f ${.TARGET}.o  .if defined(LIBSTRIPSHLIBOBJS)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
 .endif  .endif
   
 .c.ln:  .cc.o .cpp.o .cxx.o .C.o:
         ${LINT} ${LINTFLAGS} ${CPPFLAGS:M-[IDU]*} -i ${.IMPSRC}          ${_MKTARGET_COMPILE}
           ${COMPILE.cc} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
   .if defined(LIBSTRIPCOBJS)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   .endif
   
 .cc.o .C.o:  .cc.po .cpp.po .cxx.po .C.po:
 .if defined(COPTS) && !empty(COPTS:M*-g*)          ${_MKTARGET_COMPILE}
         ${COMPILE.cc} ${.IMPSRC}          ${COMPILE.cc} ${PROFFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} -pg ${.IMPSRC} -o ${.TARGET}
 .else  .if defined(LIBSTRIPCOBJS)
         @echo ${COMPILE.cc:Q} ${.IMPSRC}          ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
         @${COMPILE.cc} ${.IMPSRC} -o ${.TARGET}.o  
         @${LD} -x -r ${.TARGET}.o -o ${.TARGET}  
         @rm -f ${.TARGET}.o  
 .endif  .endif
   
 .cc.po .C.po:  .cc.go .cpp.go .cxx.go .C.go:
 .if defined(COPTS) && !empty(COPTS:M*-g*)          ${_MKTARGET_COMPILE}
         ${COMPILE.cc} -pg ${.IMPSRC} -o ${.TARGET}          ${COMPILE.cc} ${DEBUGFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} -g ${.IMPSRC} -o ${.TARGET}
 .else  
         @echo ${COMPILE.cc:Q} -pg ${.IMPSRC} -o ${.TARGET}  .cc.pico .cpp.pico .cxx.pico .C.pico:
         @${COMPILE.cc} -pg ${.IMPSRC} -o ${.TARGET}.o          ${_MKTARGET_COMPILE}
         @${LD} -X -r ${.TARGET}.o -o ${.TARGET}          ${COMPILE.cc} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${CSHLIBFLAGS} ${.IMPSRC} -o ${.TARGET}
         @rm -f ${.TARGET}.o  .if defined(LIBSTRIPSHLIBOBJS)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
 .endif  .endif
   
 .cc.so .C.so:  .f.o:
 .if defined(COPTS) && !empty(COPTS:M*-g*)          ${_MKTARGET_COMPILE}
         ${COMPILE.cc} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}          ${COMPILE.f} ${.IMPSRC} -o ${.TARGET}
 .else  .if defined(CTFCONVERT)
         @echo ${COMPILE.cc:Q} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}          ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
         @${COMPILE.cc} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}.o  .endif
         @${LD} -x -r ${.TARGET}.o -o ${.TARGET}  .if defined(LIBSTRIPFOBJS)
         @rm -f ${.TARGET}.o          ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   .endif
   
   .f.po:
           ${_MKTARGET_COMPILE}
           ${COMPILE.f} ${PROFFLAGS} -pg ${.IMPSRC} -o ${.TARGET}
   .if defined(CTFCONVERT)
           ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
   .endif
   .if defined(LIBSTRIPFOBJS)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   .endif
   
   .f.go:
           ${_MKTARGET_COMPILE}
           ${COMPILE.f} ${DEBUGFLAGS} -g ${.IMPSRC} -o ${.TARGET}
   
   .f.pico:
           ${_MKTARGET_COMPILE}
           ${COMPILE.f} ${PICFLAGS} ${.IMPSRC} -o ${.TARGET}
   .if defined(LIBSTRIPFOBJS)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
 .endif  .endif
   
   .f.ln:
           ${_MKTARGET_COMPILE}
           @echo Skipping lint for Fortran libraries.
   
 .m.o:  .m.o:
 .if defined(OBJCFLAGS) && !empty(OBJCFLAGS:M*-g*)          ${_MKTARGET_COMPILE}
         ${COMPILE.m} ${.IMPSRC}          ${COMPILE.m} ${OBJCOPTS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
 .else  .if defined(CTFCONVERT)
         @echo ${COMPILE.m:Q} ${.IMPSRC}          ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
         @${COMPILE.m} ${.IMPSRC} -o ${.TARGET}.o  .endif
         @${LD} -x -r ${.TARGET}.o -o ${.TARGET}  .if defined(LIBSTRIPOBJCOBJS)
         @rm -f ${.TARGET}.o          ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
 .endif  .endif
   
 .m.po:  .m.po:
 .if defined(OBJCFLAGS) && !empty(OBJCFLAGS:M*-g*)          ${_MKTARGET_COMPILE}
         ${COMPILE.m} -pg ${.IMPSRC} -o ${.TARGET}          ${COMPILE.m} ${PROFFLAGS} -pg ${OBJCOPTS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
 .else  .if defined(CTFCONVERT)
         @echo ${COMPILE.m:Q} -pg ${.IMPSRC} -o ${.TARGET}          ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
         @${COMPILE.m} -pg ${.IMPSRC} -o ${.TARGET}.o  .endif
         @${LD} -X -r ${.TARGET}.o -o ${.TARGET}  .if defined(LIBSTRIPOBJCOBJS)
         @rm -f ${.TARGET}.o          ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
 .endif  .endif
   
 .m.so:  .m.go:
 .if defined(OBJCFLAGS) && !empty(OBJCFLAGS:M*-g*)          ${_MKTARGET_COMPILE}
         ${COMPILE.m} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}          ${COMPILE.m} ${DEBUGFLAGS} -g ${OBJCOPTS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
 .else  .if defined(LIBSTRIPOBJCOBJS)
         @echo ${COMPILE.m:Q} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}          ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
         @${COMPILE.m} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}.o  .endif
         @${LD} -x -r ${.TARGET}.o -o ${.TARGET}  
         @rm -f ${.TARGET}.o  .m.pico:
 .endif          ${_MKTARGET_COMPILE}
           ${COMPILE.m} ${CSHLIBFLAGS} ${OBJCOPTS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
 .S.o .s.o:  .if defined(LIBSTRIPOBJCOBJS)
         @echo ${COMPILE.S:Q} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC}          ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
         @${COMPILE.S} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}.o  .endif
         @${LD} -x -r ${.TARGET}.o -o ${.TARGET}  
         @rm -f ${.TARGET}.o  .s.o:
           ${_MKTARGET_COMPILE}
 .S.po .s.po:          ${COMPILE.s} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
         @echo ${COMPILE.S:Q} -DGPROF -DPROF ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}  .if defined(CTFCONVERT)
         @${COMPILE.S} -DGPROF -DPROF ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}.o          ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
         @${LD} -X -r ${.TARGET}.o -o ${.TARGET}  .endif
         @rm -f ${.TARGET}.o  .if defined(LIBSTRIPAOBJS)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
 .S.so .s.so:  .endif
         @echo ${COMPILE.S:Q} ${CAPICFLAGS} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}  
         @${COMPILE.S} ${CAPICFLAGS} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}.o  .S.o:
         @${LD} -x -r ${.TARGET}.o -o ${.TARGET}          ${_MKTARGET_COMPILE}
         @rm -f ${.TARGET}.o          ${COMPILE.S} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
   .if defined(CTFCONVERT)
 .if ${MKPIC} == "no" || (defined(LDSTATIC) && ${LDSTATIC} != "") \          ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
         || ${MKLINKLIB} != "no"  .endif
 _LIBS=lib${LIB}.a  .if defined(LIBSTRIPAOBJS)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   .endif
   
   .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
   .if defined(LIBSTRIPAOBJS)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   .endif
   
   .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
   .if defined(LIBSTRIPAOBJS)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   .endif
   
   .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} ${PICFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
   .if defined(LIBSTRIPAOBJS)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   .endif
   
   .S.pico:
           ${_MKTARGET_COMPILE}
           ${COMPILE.S} ${PICFLAGS} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} -o ${.TARGET}
   .if defined(LIBSTRIPAOBJS)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.TARGET}
   .endif
   
   # 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}
   _DEST.ODEBUG:=${DESTDIR}${DEBUGDIR}${_LIBSODIR}
   
   .if defined(LIB)                                                        # {
   .if (${MKPIC} == "no" || (defined(LDSTATIC) && ${LDSTATIC} != "") \
           || ${MKLINKLIB} != "no") && ${MKSTATICLIB} != "no"
   _LIBS=${_LIB.a}
 .else  .else
 _LIBS=  _LIBS=
 .endif  .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(LIBSTRIPOBJS)
           ${OBJCOPY} ${OBJCOPYLIBFLAGS} ${.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}  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"  .if ${MKPROFILE} != "no"
 _LIBS+=lib${LIB}_p.a  _LIBS+=${_LIB_p.a}
 POBJS+=${OBJS:.o=.po}  POBJS+=${OBJS:.o=.po}
   PROFFLAGS?=-DGPROF -DPROF
 .endif  .endif
   
 .if ${MKPIC} != "no"  .if ${MKPIC} != "no"                                                    # {
 .if ${MKPICLIB} == "no"  .if ${MKPICLIB} == "no"
 SOLIB=lib${LIB}.a  .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  .else
 SOLIB=lib${LIB}_pic.a  SOLIB=${_LIB.a}
   .endif
   .else
   SOLIB=${_LIB_pic.a}
 _LIBS+=${SOLIB}  _LIBS+=${SOLIB}
 SOBJS+=${OBJS:.o=.so}  SOBJS+=${OBJS:.o=.pico}
 .endif  .endif
 .if defined(SHLIB_MAJOR) && defined(SHLIB_MINOR)  .if defined(SHLIB_FULLVERSION)
 _LIBS+=lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}  _LIBS+=${_LIB.so.full}
 .endif  .endif
   .endif                                                                  # }
   
   .if ${MKLINT} != "no" && !empty(LOBJS)
   _LIBS+=${_LIB.ln}
 .endif  .endif
   
 .if ${MKLINT} != "no" && ${MKLINKLIB} != "no"  ALLOBJS=
 _LIBS+=llib-l${LIB}.ln  .if (${MKPIC} == "no" || (defined(LDSTATIC) && ${LDSTATIC} != "") \
 LOBJS+=${LSRCS:.c=.ln} ${SRCS:M*.c:.c=.ln}          || ${MKLINKLIB} != "no") && ${MKSTATICLIB} != "no"
   ALLOBJS+=${STOBJS}
 .endif  .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}}
   
 .if ${MKPIC} == "no" || (defined(LDSTATIC) && ${LDSTATIC} != "") \  .NOPATH: ${ALLOBJS} ${_LIBS} ${_YLSRCS}
         || ${MKLINKLIB} != "no"  
 ALLOBJS=${OBJS} ${POBJS} ${SOBJS} ${LOBJS}  realall: ${SRCS} ${ALLOBJS:O} ${_LIBS} ${_LIB.so.debug}
   
   MKARZERO?= ${MKREPRO:Uno}
   
   .if ${MKARZERO} == "yes"
   _ARFL=crsD
   _ARRANFL=sD
   _INSTRANLIB=
 .else  .else
 ALLOBJS=${POBJS} ${SOBJS} ${LOBJS}  _ARFL=crs
   _ARRANFL=s
   _INSTRANLIB=${empty(PRESERVE):?-a "${RANLIB} -t":}
 .endif  .endif
 .NOPATH: ${ALLOBJS} ${_LIBS}  
   
 realall: ${SRCS} ${ALLOBJS:O} ${_LIBS}  
   
   # If you change this, please consider reflecting the change in
   # the override in sys/rump/Makefile.rump.
   .if !target(__archivebuild)
 __archivebuild: .USE  __archivebuild: .USE
         @rm -f ${.TARGET}          ${_MKTARGET_BUILD}
         @${AR} cq ${.TARGET} `NM=${NM} ${LORDER} ${.ALLSRC:M*o} | ${TSORT}`          rm -f ${.TARGET}
         ${RANLIB} ${.TARGET}          ${AR} ${_ARFL} ${.TARGET} `NM=${NM} ${LORDER} ${.ALLSRC:M*o} | ${TSORT}`
   .endif
   
   .if !target(__archiveinstall)
 __archiveinstall: .USE  __archiveinstall: .USE
         ${INSTALL} ${RENAME} ${PRESERVE} ${COPY} ${INSTPRIV} -o ${LIBOWN} \          ${_MKTARGET_INSTALL}
             -g ${LIBGRP} -m 600 ${.ALLSRC} ${.TARGET}          ${INSTALL_FILE} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
         ${RANLIB} -t ${.TARGET}              ${_INSTRANLIB} ${.ALLSRC} ${.TARGET}
         chmod ${LIBMODE} ${.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
   
 DPSRCS+=        ${SRCS:M*.l:.l=.c} ${SRCS:M*.y:.y=.c}  ${_LIB_pic.a}:: ${SOBJS} __archivebuild
 CLEANFILES+=    ${DPSRCS}  
 .if defined(YHEADER)  ${_LIB_g.a}:: ${GOBJS} __archivebuild
 CLEANFILES+=    ${SRCS:M*.y:.y=.h}  
   
   _LIBLDOPTS=
   .if ${SHLIBDIR} != "/usr/lib"
   _LIBLDOPTS+=    -Wl,-rpath,${SHLIBDIR} \
                   -L=${SHLIBDIR}
   .elif ${SHLIBINSTALLDIR} != "/usr/lib"
   _LIBLDOPTS+=    -Wl,-rpath-link,${DESTDIR}${SHLIBINSTALLDIR} \
                   -L=${SHLIBINSTALLDIR}
 .endif  .endif
   
 lib${LIB}.a:: ${OBJS} __archivebuild  # gcc -shared now adds -lc automatically. For libraries other than libc and
         @echo building standard ${LIB} library  # 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 ${HAVE_LIBGCC} == "yes" && ${LIB} == "c"
   LDADD+= -lgcc
   .endif
   .endif
   .endif
   
 lib${LIB}_p.a:: ${POBJS} __archivebuild  .if ${LIBISCXX} != "no"
         @echo building profiled ${LIB} library  LIBCC:= ${CXX}
   . if ${MKLIBCXX} == "yes"
   LIBDPLIBS+=     c++     ${.CURDIR}/../../../../../external/bsd/libc++/lib
   . else
   LIBDPLIBS+=     stdc++  ${.CURDIR}/../../../../../external/gpl3/${EXTERNAL_GCC_SUBDIR}/lib/libstdc++-v3
   . endif
   .else
   LIBCC:= ${CC}
   .endif
   
 lib${LIB}_pic.a:: ${SOBJS} __archivebuild  _LDADD.${_LIB}= ${LDADD} ${LDADD.${_LIB}}
         @echo building shared object ${LIB} library  _LDFLAGS.${_LIB}=       ${LDFLAGS} ${LDFLAGS.${_LIB}}
   
 lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}: ${SOLIB} ${DPADD} \  ${_LIB.so.full}: ${SOLIB} ${DPADD} ${DPLIBC} \
     ${SHLIB_LDSTARTFILE} ${SHLIB_LDENDFILE}      ${SHLIB_LDSTARTFILE} ${SHLIB_LDENDFILE}
         @echo building shared ${LIB} library \(version ${SHLIB_MAJOR}.${SHLIB_MINOR}\)          ${_MKTARGET_BUILD}
         @rm -f lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}          rm -f ${.TARGET}
 .if defined(DESTDIR)          ${LIBCC} ${LDLIBC} -Wl,-x -shared ${SHLIB_SHFLAGS} \
         $(LD) -nostdlib -x -shared ${SHLIB_SHFLAGS} -o ${.TARGET} \              ${_LDFLAGS.${_LIB}} -o ${.TARGET} ${_LIBLDOPTS} \
             ${SHLIB_LDSTARTFILE} \              -Wl,--whole-archive ${SOLIB} \
             --whole-archive ${SOLIB} \              -Wl,--no-whole-archive ${_LDADD.${_LIB}}
             --no-whole-archive ${LDADD} \  #  We don't use INSTALL_SYMLINK here because this is just
             -L${DESTDIR}${LIBDIR} -R${LIBDIR} \  #  happening inside the build directory/objdir. XXX Why does
             ${SHLIB_LDENDFILE}  #  this spend so much effort on libraries that aren't live??? XXX
 .else  .if defined(SHLIB_FULLVERSION) && defined(SHLIB_MAJOR) && \
         $(LD) -x -shared ${SHLIB_SHFLAGS} -o ${.TARGET} \      "${SHLIB_FULLVERSION}" != "${SHLIB_MAJOR}"
             ${SHLIB_LDSTARTFILE} \          ${HOST_LN} -sf ${_LIB.so.full} ${_LIB.so.major}.tmp
             --whole-archive ${SOLIB} --no-whole-archive ${LDADD} \          mv -f ${_LIB.so.major}.tmp ${_LIB.so.major}
             ${SHLIB_LDENDFILE}  .endif
 .endif          ${HOST_LN} -sf ${_LIB.so.full} ${_LIB.so}.tmp
 .if ${OBJECT_FMT} == "ELF"          mv -f ${_LIB.so}.tmp ${_LIB.so}
         rm -f lib${LIB}.so.${SHLIB_MAJOR}  .if ${MKSTRIPIDENT} != "no"
         ln -s lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \          ${OBJCOPY} -R .ident ${.TARGET}
             lib${LIB}.so.${SHLIB_MAJOR}  .endif
         rm -f lib${LIB}.so  
         ln -s lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \  .if defined(_LIB.so.debug)
             lib${LIB}.so  ${_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} \
               ${_LIB.so.full}.tmp && mv -f ${_LIB.so.full}.tmp ${_LIB.so.full} \
           ) || (rm -f ${.TARGET}; false)
 .endif  .endif
   
   .if !empty(LOBJS)                                                       # {
 LLIBS?=         -lc  LLIBS?=         -lc
 llib-l${LIB}.ln: ${LOBJS}  ${_LIB.ln}: ${LOBJS}
         @echo building llib-l${LIB}.ln          ${_MKTARGET_COMPILE}
         @rm -f llib-l${LIB}.ln          rm -f ${.TARGET}
         @${LINT} -C${LIB} ${.ALLSRC} ${LLIBS}  .if defined(DESTDIR)
           ${LINT} -C${LIB} ${.ALLSRC} -L${DESTDIR}/usr/libdata ${LLIBS}
 cleanlib:  .else
         rm -f a.out [Ee]rrs mklog core *.core ${CLEANFILES}          ${LINT} -C${LIB} ${.ALLSRC} ${LLIBS}
         rm -f lib${LIB}.a ${OBJS}  .endif
         rm -f lib${LIB}_p.a ${POBJS}  .endif                                                                  # }
         rm -f lib${LIB}_pic.a lib${LIB}.so.* lib${LIB}.so ${SOBJS}  
         rm -f llib-l${LIB}.ln ${LOBJS}  lint: ${LOBJS}
   .if defined(LOBJS) && !empty(LOBJS)
 .if defined(SRCS)          ${LINT} ${LINTFLAGS} ${LOBJS}
 afterdepend: .depend  
         @(TMP=/tmp/_depend$$$$; \  
             sed -e 's/^\([^\.]*\).o[ ]*:/\1.o \1.po \1.so \1.ln:/' \  
               < .depend > $$TMP; \  
             mv $$TMP .depend)  
 .endif  .endif
   
 .if !target(libinstall)  
   # 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  # Make sure it gets defined, in case MKPIC==no && MKLINKLIB==no
 libinstall::  libinstall::
   
 .if ${MKLINKLIB} != "no"  .if ${MKLINKLIB} != "no" && ${MKSTATICLIB} != "no"
 libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}.a  libinstall:: ${_DEST.LIB}/${_LIB.a}
 .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}.a  .PRECIOUS: ${_DEST.LIB}/${_LIB.a}
 .if !defined(UPDATE)  
 .PHONY: ${DESTDIR}${LIBDIR}/lib${LIB}.a  
 .endif  
   
 .if !defined(BUILD) && !make(all) && !make(lib${LIB}.a)  .if ${MKUPDATE} == "no"
 ${DESTDIR}${LIBDIR}/lib${LIB}.a: .MADE  .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
 ${DESTDIR}${LIBDIR}/lib${LIB}.a: lib${LIB}.a __archiveinstall  
 .endif  .endif
   
 .if ${MKPROFILE} != "no"  .if ${MKPROFILE} != "no"
 libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a  libinstall:: ${_DEST.LIB}/${_LIB_p.a}
 .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a  .PRECIOUS: ${_DEST.LIB}/${_LIB_p.a}
 .if !defined(UPDATE)  
 .PHONY: ${DESTDIR}${LIBDIR}/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  .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 !defined(BUILD) && !make(all) && !make(lib${LIB}_p.a)  .if ${MKUPDATE} == "no"
 ${DESTDIR}${LIBDIR}/lib${LIB}_p.a: .MADE  .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
 ${DESTDIR}${LIBDIR}/lib${LIB}_p.a: lib${LIB}_p.a __archiveinstall  
 .endif  .endif
   
 .if ${MKPIC} != "no" && ${MKPICINSTALL} != "no"  .if ${MKPIC} != "no" && ${MKPICINSTALL} != "no"
 libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a  libinstall:: ${_DEST.LIB}/${_LIB_pic.a}
 .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a  .PRECIOUS: ${_DEST.LIB}/${_LIB_pic.a}
 .if !defined(UPDATE)  
 .PHONY: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a  
 .endif  
   
 .if !defined(BUILD) && !make(all) && !make(lib${LIB}_pic.a)  .if ${MKUPDATE} == "no"
 ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a: .MADE  .if !defined(BUILD) && !make(all) && !make(${_LIB_pic.a})
   ${_DEST.LIB}/${_LIB_pic.a}! .MADE
 .endif  .endif
 .if ${MKPICLIB} == "no"  .if ${MKPICLIB} == "no"
 ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a:  ${_DEST.LIB}/${_LIB_pic.a}! ${_LIB.a} __archivesymlinkpic
         rm -f ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a  
         ln -s lib${LIB}.a ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a  
 .else  .else
 ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a: lib${LIB}_pic.a __archiveinstall  ${_DEST.LIB}/${_LIB_pic.a}! ${_LIB_pic.a} __archiveinstall
 .endif  .endif
   .else
   .if !defined(BUILD) && !make(all) && !make(${_LIB_pic.a})
   ${_DEST.LIB}/${_LIB_pic.a}: .MADE
 .endif  .endif
   .if ${MKPICLIB} == "no"
 .if ${MKPIC} != "no" && defined(SHLIB_MAJOR) && defined(SHLIB_MINOR)  ${_DEST.LIB}/${_LIB_pic.a}: ${_LIB.a} __archivesymlinkpic
 libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}  .else
 .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}  ${_DEST.LIB}/${_LIB_pic.a}: ${_LIB_pic.a} __archiveinstall
 .if !defined(UPDATE)  
 .PHONY: ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}  
 .endif  .endif
   .endif
   .endif
   
   .if ${MKPIC} != "no" && defined(SHLIB_FULLVERSION)
   
 .if !defined(BUILD) && !make(all) && !make(lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR})  libinstall:: ${_DEST.OBJ}/${_LIB.so.full}
 ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}: .MADE  .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
 ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}: lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}  
         ${INSTALL} ${RENAME} ${PRESERVE} ${COPY} ${INSTPRIV} -o ${LIBOWN} \  
             -g ${LIBGRP} -m ${LIBMODE} ${.ALLSRC} ${.TARGET}  
 .if ${OBJECT_FMT} == "a.out" && !defined(DESTDIR)  
         /sbin/ldconfig -m ${LIBDIR}  
 .endif  .endif
 .if ${OBJECT_FMT} == "ELF"  
         rm -f ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}  
         ln -s lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \  
             ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}  
         rm -f ${DESTDIR}${LIBDIR}/lib${LIB}.so  
 .if ${MKLINKLIB} != "no"  .if ${MKLINKLIB} != "no"
         ln -s lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \          ${INSTALL_SYMLINK}  ${_LIB.so.full} ${_DEST.OBJ}/${_LIB.so}
             ${DESTDIR}${LIBDIR}/lib${LIB}.so  .if ${_LIBSODIR} != ${LIBDIR}
           ${INSTALL_SYMLINK} -l r ${_DEST.OBJ}/${_LIB.so.full} \
               ${_DEST.LIB}/${_LIB.so}
 .endif  .endif
 .endif  .endif
 .endif  .endif
   
 .if ${MKLINT} != "no" && ${MKLINKLIB} != "no"  .if defined(_LIB.so.debug)
 libinstall:: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln  libinstall:: ${_DEST.DEBUG}/${_LIB.so.debug}
 .PRECIOUS: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln  .PRECIOUS: ${_DEST.DEBUG}/${_LIB.so.debug}
 .if !defined(UPDATE)  
 .PHONY: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln  ${_DEST.DEBUG}/${_LIB.so.debug}: ${_LIB.so.debug}
           ${_MKTARGET_INSTALL}
           ${INSTALL_FILE} -o ${DEBUGOWN} -g ${DEBUGGRP} -m ${DEBUGMODE} \
               ${.ALLSRC} ${.TARGET}
   .if ${_LIBSODIR} != ${LIBDIR}
           ${INSTALL_SYMLINK} -l r ${_DEST.DEBUG}/${_LIB.so.debug} \
               ${_DEST.ODEBUG}/${_LIB.so.debug}
 .endif  .endif
   .endif
   
   .if ${MKLINT} != "no" && !empty(LOBJS)
   libinstall:: ${_DEST.LINT}/${_LIB.ln}
   .PRECIOUS: ${_DEST.LINT}/${_LIB.ln}
   
 .if !defined(BUILD) && !make(all) && !make(llib-l${LIB}.ln)  .if ${MKUPDATE} == "no"
 ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln: .MADE  .if !defined(BUILD) && !make(all) && !make(${_LIB.ln})
   ${_DEST.LINT}/${_LIB.ln}! .MADE
 .endif  .endif
 ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln: llib-l${LIB}.ln  ${_DEST.LINT}/${_LIB.ln}! ${_LIB.ln}
         ${INSTALL} ${RENAME} ${PRESERVE} ${COPY} ${INSTPRIV} -o ${LIBOWN} \  .else
             -g ${LIBGRP} -m ${LIBMODE} ${.ALLSRC} ${DESTDIR}${LINTLIBDIR}  .if !defined(BUILD) && !make(all) && !make(${_LIB.ln})
   ${_DEST.LINT}/${_LIB.ln}: .MADE
 .endif  .endif
   ${_DEST.LINT}/${_LIB.ln}: ${_LIB.ln}
 .endif  .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.man.mk>
 .include <bsd.nls.mk>  .include <bsd.nls.mk>
 .include <bsd.files.mk>  .include <bsd.files.mk>
 .include <bsd.inc.mk>  .include <bsd.inc.mk>
 .include <bsd.links.mk>  .include <bsd.links.mk>
 .include <bsd.dep.mk>  .include <bsd.dep.mk>
 .include <bsd.sys.mk>  .include <bsd.clang-analyze.mk>
   .include <bsd.clean.mk>
   
 # Make sure all of the standard targets are defined, even if they do nothing.  ${TARGETS}:     # ensure existence
 lint regress:  

Legend:
Removed from v.1.169.2.1  
changed lines
  Added in v.1.357

CVSweb <webmaster@jp.NetBSD.org>