[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.12 and 1.169.2.1

version 1.12, 1993/05/26 11:48:40 version 1.169.2.1, 2000/06/29 23:35:08
Line 1 
Line 1 
 #       @(#)bsd.lib.mk  5.26 (Berkeley) 5/2/91  #       $NetBSD$
   #       @(#)bsd.lib.mk  8.3 (Berkeley) 4/22/94
   
   .if !target(__initialized__)
   __initialized__:
 .if exists(${.CURDIR}/../Makefile.inc)  .if exists(${.CURDIR}/../Makefile.inc)
 .include "${.CURDIR}/../Makefile.inc"  .include "${.CURDIR}/../Makefile.inc"
 .endif  .endif
   .include <bsd.own.mk>
   .include <bsd.obj.mk>
   .include <bsd.depall.mk>
   .MAIN:          all
   .endif
   
   .PHONY:         checkver cleanlib libinstall
   realinstall:    checkver libinstall
   clean cleandir distclean: cleanlib
   
   .if exists(${SHLIB_VERSION_FILE})
   SHLIB_MAJOR != . ${SHLIB_VERSION_FILE} ; echo $$major
   SHLIB_MINOR != . ${SHLIB_VERSION_FILE} ; echo $$minor
   
   # Check for higher installed library versions.
   .if !defined(NOCHECKVER) && !defined(NOCHECKVER_${LIB}) && \
           exists(${BSDSRCDIR}/lib/checkver)
   checkver:
           @(cd ${.CURDIR} && \
                   ${BSDSRCDIR}/lib/checkver -v ${SHLIB_VERSION_FILE} \
                       -d ${DESTDIR}${LIBDIR} ${LIB})
   .else
   checkver:
   .endif
   print-shlib-major:
           @echo ${SHLIB_MAJOR}
   
   print-shlib-minor:
           @echo ${SHLIB_MINOR}
   .else
   checkver:
   
   print-shlib-major:
           @false
   
   print-shlib-minor:
           @false
   .endif
   
   # add additional suffixes not exported.
   # .po is used for profiling object files.
   # .so 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: .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.
   # OBJECT_FMT:           currently either "ELF" or "a.out", from <bsd.own.mk>
   # 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_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
   # 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
   
   # Platform-independent flags for NetBSD a.out shared libraries (and PowerPC)
   SHLIB_LDSTARTFILE=
   SHLIB_LDENDFILE=
   SHLIB_SHFLAGS=
   SHLIB_SOVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR}
   CPICFLAGS?= -fPIC -DPIC
   CPPPICFLAGS?= -DPIC
   CAPICFLAGS?= ${CPPPICFLAGS} ${CPICFLAGS}
   APICFLAGS?= -k
   
 LIBDIR?=        /usr/lib  .endif
 LINTLIBDIR?=    /usr/libdata/lint  
 LIBGRP?=        bin  MKPICLIB?= yes
 LIBOWN?=        bin  
 LIBMODE?=       444  # Platform-independent linker flags for ELF shared libraries
   .if ${OBJECT_FMT} == "ELF"
 STRIP?= -s  SHLIB_SOVERSION=${SHLIB_MAJOR}
   SHLIB_SHFLAGS=-soname lib${LIB}.so.${SHLIB_SOVERSION}
 BINGRP?=        bin  SHLIB_LDSTARTFILE= ${DESTDIR}/usr/lib/crtbeginS.o
 BINOWN?=        bin  SHLIB_LDENDFILE= ${DESTDIR}/usr/lib/crtendS.o
 BINMODE?=       555  .endif
   
 .MAIN: all  
   
 # prefer .s to a .c, add .po, remove stuff not used in the BSD libraries  
 .SUFFIXES:  
 .SUFFIXES: .out .o .po .s .c .f .y .l .8 .7 .6 .5 .4 .3 .2 .1 .0  
   
 .8.0 .7.0 .6.0 .5.0 .4.0 .3.0 .2.0 .1.0:  CFLAGS+=        ${COPTS}
         nroff -mandoc ${.IMPSRC} > ${.TARGET}  
   
 .c.o:  .c.o:
         ${CC} ${CFLAGS} -c ${.IMPSRC}  .if defined(COPTS) && !empty(COPTS:M*-g*)
         @${LD} -x -r ${.TARGET}          ${COMPILE.c} ${.IMPSRC}
         @mv a.out ${.TARGET}  .else
           @echo ${COMPILE.c:Q} ${.IMPSRC}
           @${COMPILE.c} ${.IMPSRC} -o ${.TARGET}.o
           @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
           @rm -f ${.TARGET}.o
   .endif
   
 .c.po:  .c.po:
         ${CC} -p ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET}  .if defined(COPTS) && !empty(COPTS:M*-g*)
         @${LD} -X -r ${.TARGET}          ${COMPILE.c} -pg ${.IMPSRC} -o ${.TARGET}
         @mv a.out ${.TARGET}  .else
           @echo ${COMPILE.c:Q} -pg ${.IMPSRC} -o ${.TARGET}
 .s.o:          @${COMPILE.c} -pg ${.IMPSRC} -o ${.TARGET}.o
         ${CPP} -E ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} | \          @${LD} -X -r ${.TARGET}.o -o ${.TARGET}
             ${AS} -o ${.TARGET}          @rm -f ${.TARGET}.o
         @${LD} -x -r ${.TARGET}  .endif
         @mv a.out ${.TARGET}  
   
 .s.po:  
         ${CPP} -E -DPROF ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} | \  
             ${AS} -o ${.TARGET}  
         @${LD} -X -r ${.TARGET}  
         @mv a.out ${.TARGET}  
   
 .if !defined(NOMAN)  .c.so:
 MANALL= ${MAN1} ${MAN2} ${MAN3} ${MAN4} ${MAN5} ${MAN6} ${MAN7} ${MAN8}  .if defined(COPTS) && !empty(COPTS:M*-g*)
           ${COMPILE.c} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}
   .else
           @echo ${COMPILE.c:Q} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}
           @${COMPILE.c} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}.o
           @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
           @rm -f ${.TARGET}.o
 .endif  .endif
   
 .if !defined(NOPROFILE)  .c.ln:
 _LIBS=lib${LIB}.a lib${LIB}_p.a          ${LINT} ${LINTFLAGS} ${CPPFLAGS:M-[IDU]*} -i ${.IMPSRC}
   
   .cc.o .C.o:
   .if defined(COPTS) && !empty(COPTS:M*-g*)
           ${COMPILE.cc} ${.IMPSRC}
 .else  .else
           @echo ${COMPILE.cc:Q} ${.IMPSRC}
           @${COMPILE.cc} ${.IMPSRC} -o ${.TARGET}.o
           @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
           @rm -f ${.TARGET}.o
   .endif
   
   .cc.po .C.po:
   .if defined(COPTS) && !empty(COPTS:M*-g*)
           ${COMPILE.cc} -pg ${.IMPSRC} -o ${.TARGET}
   .else
           @echo ${COMPILE.cc:Q} -pg ${.IMPSRC} -o ${.TARGET}
           @${COMPILE.cc} -pg ${.IMPSRC} -o ${.TARGET}.o
           @${LD} -X -r ${.TARGET}.o -o ${.TARGET}
           @rm -f ${.TARGET}.o
   .endif
   
   .cc.so .C.so:
   .if defined(COPTS) && !empty(COPTS:M*-g*)
           ${COMPILE.cc} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}
   .else
           @echo ${COMPILE.cc:Q} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}
           @${COMPILE.cc} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}.o
           @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
           @rm -f ${.TARGET}.o
   .endif
   
   .m.o:
   .if defined(OBJCFLAGS) && !empty(OBJCFLAGS:M*-g*)
           ${COMPILE.m} ${.IMPSRC}
   .else
           @echo ${COMPILE.m:Q} ${.IMPSRC}
           @${COMPILE.m} ${.IMPSRC} -o ${.TARGET}.o
           @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
           @rm -f ${.TARGET}.o
   .endif
   
   .m.po:
   .if defined(OBJCFLAGS) && !empty(OBJCFLAGS:M*-g*)
           ${COMPILE.m} -pg ${.IMPSRC} -o ${.TARGET}
   .else
           @echo ${COMPILE.m:Q} -pg ${.IMPSRC} -o ${.TARGET}
           @${COMPILE.m} -pg ${.IMPSRC} -o ${.TARGET}.o
           @${LD} -X -r ${.TARGET}.o -o ${.TARGET}
           @rm -f ${.TARGET}.o
   .endif
   
   .m.so:
   .if defined(OBJCFLAGS) && !empty(OBJCFLAGS:M*-g*)
           ${COMPILE.m} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}
   .else
           @echo ${COMPILE.m:Q} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}
           @${COMPILE.m} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}.o
           @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
           @rm -f ${.TARGET}.o
   .endif
   
   .S.o .s.o:
           @echo ${COMPILE.S:Q} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC}
           @${COMPILE.S} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}.o
           @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
           @rm -f ${.TARGET}.o
   
   .S.po .s.po:
           @echo ${COMPILE.S:Q} -DGPROF -DPROF ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}
           @${COMPILE.S} -DGPROF -DPROF ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}.o
           @${LD} -X -r ${.TARGET}.o -o ${.TARGET}
           @rm -f ${.TARGET}.o
   
   .S.so .s.so:
           @echo ${COMPILE.S:Q} ${CAPICFLAGS} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}
           @${COMPILE.S} ${CAPICFLAGS} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}.o
           @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
           @rm -f ${.TARGET}.o
   
   .if ${MKPIC} == "no" || (defined(LDSTATIC) && ${LDSTATIC} != "") \
           || ${MKLINKLIB} != "no"
 _LIBS=lib${LIB}.a  _LIBS=lib${LIB}.a
   .else
   _LIBS=
   .endif
   
   OBJS+=${SRCS:N*.h:N*.sh:R:S/$/.o/g}
   
   .if ${MKPROFILE} != "no"
   _LIBS+=lib${LIB}_p.a
   POBJS+=${OBJS:.o=.po}
   .endif
   
   .if ${MKPIC} != "no"
   .if ${MKPICLIB} == "no"
   SOLIB=lib${LIB}.a
   .else
   SOLIB=lib${LIB}_pic.a
   _LIBS+=${SOLIB}
   SOBJS+=${OBJS:.o=.so}
   .endif
   .if defined(SHLIB_MAJOR) && defined(SHLIB_MINOR)
   _LIBS+=lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
   .endif
   .endif
   
   .if ${MKLINT} != "no" && ${MKLINKLIB} != "no"
   _LIBS+=llib-l${LIB}.ln
   LOBJS+=${LSRCS:.c=.ln} ${SRCS:M*.c:.c=.ln}
 .endif  .endif
   
 all: ${_LIBS} ${MANALL}# llib-l${LIB}.ln  .if ${MKPIC} == "no" || (defined(LDSTATIC) && ${LDSTATIC} != "") \
           || ${MKLINKLIB} != "no"
   ALLOBJS=${OBJS} ${POBJS} ${SOBJS} ${LOBJS}
   .else
   ALLOBJS=${POBJS} ${SOBJS} ${LOBJS}
   .endif
   .NOPATH: ${ALLOBJS} ${_LIBS}
   
 OBJS+=  ${SRCS:R:S/$/.o/g}  realall: ${SRCS} ${ALLOBJS:O} ${_LIBS}
   
 lib${LIB}.a:: ${OBJS}  __archivebuild: .USE
           @rm -f ${.TARGET}
           @${AR} cq ${.TARGET} `NM=${NM} ${LORDER} ${.ALLSRC:M*o} | ${TSORT}`
           ${RANLIB} ${.TARGET}
   
   __archiveinstall: .USE
           ${INSTALL} ${RENAME} ${PRESERVE} ${COPY} ${INSTPRIV} -o ${LIBOWN} \
               -g ${LIBGRP} -m 600 ${.ALLSRC} ${.TARGET}
           ${RANLIB} -t ${.TARGET}
           chmod ${LIBMODE} ${.TARGET}
   
   DPSRCS+=        ${SRCS:M*.l:.l=.c} ${SRCS:M*.y:.y=.c}
   CLEANFILES+=    ${DPSRCS}
   .if defined(YHEADER)
   CLEANFILES+=    ${SRCS:M*.y:.y=.h}
   .endif
   
   lib${LIB}.a:: ${OBJS} __archivebuild
         @echo building standard ${LIB} library          @echo building standard ${LIB} library
         @rm -f lib${LIB}.a  
         @${AR} cTq lib${LIB}.a `lorder ${OBJS} | tsort` ${LDADD}  
         ranlib lib${LIB}.a  
   
 POBJS+= ${OBJS:.o=.po}  lib${LIB}_p.a:: ${POBJS} __archivebuild
 lib${LIB}_p.a:: ${POBJS}  
         @echo building profiled ${LIB} library          @echo building profiled ${LIB} library
         @rm -f lib${LIB}_p.a  
         @${AR} cTq lib${LIB}_p.a `lorder ${POBJS} | tsort` ${LDADD}  lib${LIB}_pic.a:: ${SOBJS} __archivebuild
         ranlib lib${LIB}_p.a          @echo building shared object ${LIB} library
   
 llib-l${LIB}.ln: ${SRCS}  lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}: ${SOLIB} ${DPADD} \
         ${LINT} -C${LIB} ${CFLAGS} ${.ALLSRC:M*.c}      ${SHLIB_LDSTARTFILE} ${SHLIB_LDENDFILE}
           @echo building shared ${LIB} library \(version ${SHLIB_MAJOR}.${SHLIB_MINOR}\)
 .if !target(clean)          @rm -f lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
 clean:  .if defined(DESTDIR)
         rm -f a.out Errs errs mklog core ${CLEANFILES}          $(LD) -nostdlib -x -shared ${SHLIB_SHFLAGS} -o ${.TARGET} \
         rm -f ${OBJS}              ${SHLIB_LDSTARTFILE} \
         rm -f ${POBJS} profiled/*.o              --whole-archive ${SOLIB} \
         rm -f lib${LIB}.a lib${LIB}_p.a llib-l${LIB}.ln              --no-whole-archive ${LDADD} \
 .endif              -L${DESTDIR}${LIBDIR} -R${LIBDIR} \
               ${SHLIB_LDENDFILE}
 .if !target(cleandir)  .else
 cleandir:          $(LD) -x -shared ${SHLIB_SHFLAGS} -o ${.TARGET} \
         rm -f a.out Errs errs mklog core ${CLEANFILES}              ${SHLIB_LDSTARTFILE} \
         rm -f ${OBJS}              --whole-archive ${SOLIB} --no-whole-archive ${LDADD} \
         rm -f ${POBJS} profiled/*.o              ${SHLIB_LDENDFILE}
         rm -f lib${LIB}.a lib${LIB}_p.a llib-l${LIB}.ln  .endif
         rm -f ${MANALL} ${.CURDIR}/tags .depend  .if ${OBJECT_FMT} == "ELF"
 .endif          rm -f lib${LIB}.so.${SHLIB_MAJOR}
           ln -s lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
 .if !target(depend)              lib${LIB}.so.${SHLIB_MAJOR}
 depend: .depend          rm -f lib${LIB}.so
 .depend: ${SRCS}          ln -s lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
         mkdep ${CFLAGS:M-[ID+]*} ${AINC} ${.ALLSRC}              lib${LIB}.so
   .endif
   
   LLIBS?=         -lc
   llib-l${LIB}.ln: ${LOBJS}
           @echo building llib-l${LIB}.ln
           @rm -f llib-l${LIB}.ln
           @${LINT} -C${LIB} ${.ALLSRC} ${LLIBS}
   
   cleanlib:
           rm -f a.out [Ee]rrs mklog core *.core ${CLEANFILES}
           rm -f lib${LIB}.a ${OBJS}
           rm -f lib${LIB}_p.a ${POBJS}
           rm -f lib${LIB}_pic.a lib${LIB}.so.* lib${LIB}.so ${SOBJS}
           rm -f llib-l${LIB}.ln ${LOBJS}
   
   .if defined(SRCS)
   afterdepend: .depend
         @(TMP=/tmp/_depend$$$$; \          @(TMP=/tmp/_depend$$$$; \
             sed -e 's/^\([^\.]*\).o:/\1.o \1.po:/' < .depend > $$TMP; \              sed -e 's/^\([^\.]*\).o[ ]*:/\1.o \1.po \1.so \1.ln:/' \
                 < .depend > $$TMP; \
             mv $$TMP .depend)              mv $$TMP .depend)
 .endif  .endif
   
 .if !target(install)  .if !target(libinstall)
 .if !target(beforeinstall)  # Make sure it gets defined, in case MKPIC==no && MKLINKLIB==no
 beforeinstall:  libinstall::
         @if [ ! -d "${DESTDIR}${LIBDIR}" ]; then \  
                 /bin/rm -f ${DESTDIR}${LIBDIR} ; \  .if ${MKLINKLIB} != "no"
                 mkdir -p ${DESTDIR}${LIBDIR} ; \  libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}.a
                 chown root.wheel ${DESTDIR}${LIBDIR} ; \  .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}.a
                 chmod 755 ${DESTDIR}${LIBDIR} ; \  .if !defined(UPDATE)
         else \  .PHONY: ${DESTDIR}${LIBDIR}/lib${LIB}.a
                 true ; \  
         fi  
 .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  
 #       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  
   
 .if !target(lint)  
 lint:  
 .endif  
   
 .if !target(tags)  
 tags: ${SRCS}  
         -cd ${.CURDIR}; ctags -f /dev/stdout ${.ALLSRC:M*.c} | \  
             sed "s;\${.CURDIR}/;;" > tags  
 .endif  .endif
   
 .if !defined(NOMAN)  .if !defined(BUILD) && !make(all) && !make(lib${LIB}.a)
 .include <bsd.man.mk>  ${DESTDIR}${LIBDIR}/lib${LIB}.a: .MADE
   .endif
   ${DESTDIR}${LIBDIR}/lib${LIB}.a: lib${LIB}.a __archiveinstall
 .endif  .endif
   
 .if !target(obj)  .if ${MKPROFILE} != "no"
 .if defined(NOOBJ)  libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
 obj:  .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
 .else  .if !defined(UPDATE)
 obj:  .PHONY: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
         @cd ${.CURDIR}; rm -f obj > /dev/null 2>&1 || true; \  
         here=`pwd`; subdir=`echo $$here | sed 's,^/usr/src/,,'`; \  
         if test $$here != $$subdir ; then \  
                 dest=/usr/obj/$$subdir ; \  
                 echo "$$here -> $$dest"; ln -s $$dest obj; \  
                 if test -d /usr/obj -a ! -d $$dest; then \  
                         mkdir -p $$dest; \  
                 else \  
                         true; \  
                 fi; \  
         else \  
                 true ; \  
                 dest=$$here/obj ; \  
                 echo "making $$here/obj" ; \  
                 if test ! -d obj ; then \  
                         mkdir $$here/obj; \  
                 fi; \  
         fi;  
 .endif  .endif
   
   .if !defined(BUILD) && !make(all) && !make(lib${LIB}_p.a)
   ${DESTDIR}${LIBDIR}/lib${LIB}_p.a: .MADE
   .endif
   ${DESTDIR}${LIBDIR}/lib${LIB}_p.a: lib${LIB}_p.a __archiveinstall
 .endif  .endif
   
   .if ${MKPIC} != "no" && ${MKPICINSTALL} != "no"
   libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a
   .PRECIOUS: ${DESTDIR}${LIBDIR}/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)
   ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a: .MADE
   .endif
   .if ${MKPICLIB} == "no"
   ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a:
           rm -f ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a
           ln -s lib${LIB}.a ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a
   .else
   ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a: lib${LIB}_pic.a __archiveinstall
   .endif
   .endif
   
   .if ${MKPIC} != "no" && defined(SHLIB_MAJOR) && defined(SHLIB_MINOR)
   libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
   .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
   .if !defined(UPDATE)
   .PHONY: ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
   .endif
   
   .if !defined(BUILD) && !make(all) && !make(lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR})
   ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}: .MADE
   .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
   .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"
           ln -s lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
               ${DESTDIR}${LIBDIR}/lib${LIB}.so
   .endif
   .endif
   .endif
   
   .if ${MKLINT} != "no" && ${MKLINKLIB} != "no"
   libinstall:: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln
   .PRECIOUS: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln
   .if !defined(UPDATE)
   .PHONY: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln
   .endif
   
   .if !defined(BUILD) && !make(all) && !make(llib-l${LIB}.ln)
   ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln: .MADE
   .endif
   ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln: llib-l${LIB}.ln
           ${INSTALL} ${RENAME} ${PRESERVE} ${COPY} ${INSTPRIV} -o ${LIBOWN} \
               -g ${LIBGRP} -m ${LIBMODE} ${.ALLSRC} ${DESTDIR}${LINTLIBDIR}
   .endif
   .endif
   
   .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.sys.mk>
   
   # Make sure all of the standard targets are defined, even if they do nothing.
   lint regress:

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

CVSweb <webmaster@jp.NetBSD.org>