[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.8 and 1.137

version 1.8, 1993/04/09 20:05:58 version 1.137, 1998/08/09 14:46:19
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>
   .MAIN:          all
   .endif
   
   .PHONY:         cleanlib libinstall
   realinstall:    libinstall
   clean cleandir distclean: cleanlib
   
   .if exists(${.CURDIR}/shlib_version)
   SHLIB_MAJOR != . ${.CURDIR}/shlib_version ; echo $$major
   SHLIB_MINOR != . ${.CURDIR}/shlib_version ; echo $$minor
   .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
   # SHLIB_WHOLE:          turn on whole-archive
   # SHLIB_NOWHOLE:        turn off whole-archive
   # 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
   SHLIB_LDSTARTFILE= ${DESTDIR}/usr/lib/crtbeginS.o
   SHLIB_LDENDFILE= ${DESTDIR}/usr/lib/crtendS.o
   
   CPICFLAGS ?= -fpic -DPIC
   CPPPICFLAGS?= -DPIC
   CAPICFLAGS?= ${CPPPICFLAGS} ${CPICFLAGS}
   APICFLAGS ?=
   .elif (${MACHINE_ARCH} == "mips")
                   # mips-specific shared library flags
   # Still use gnu-derived ld.so on pmax; don't have or need lib<>.so support.
   SHLIB_LDSTARTFILE=
   SHLIB_LDENDFILE=
   
   # On mips, all libs need to be compiled with ABIcalls, not just sharedlibs.
   CPICFLAGS?=
   APICFLAGS?=
   #CPICFLAGS?= -fpic -DPIC
   #APICFLAGS?= -DPIC
   
   # so turn shlib PIC flags on for ${CPP}, ${CC}, and ${AS} as follows:
   AINC+=-DPIC -DABICALLS
   COPTS+= -fPIC ${AINC}
   AFLAGS+= -fPIC
   AS+=    -KPIC
   
 LIBDIR?=        /usr/lib  .else
 LINTLIBDIR?=    /usr/libdata/lint  
 LIBGRP?=        bin  # Platform-independent flags for NetBSD a.out shared libraries (and PowerPC)
 LIBOWN?=        bin  SHLIB_LDSTARTFILE=
 LIBMODE?=       444  SHLIB_LDENDFILE=
   SHLIB_SHFLAGS=
 STRIP?= -s  SHLIB_SOVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR}
   SHLIB_WHOLE=-Bforcearchive
 BINGRP?=        bin  SHLIB_NOWHOLE=
 BINOWN?=        bin  CPICFLAGS?= -fpic -DPIC
 BINMODE?=       555  CPPPICFLAGS?= -DPIC
   CAPICFLAGS?= ${CPPPICFLAGS} ${CPICFLAGS}
 .MAIN: all  APICFLAGS?= -k
   
 # 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:  .endif
         nroff -mandoc ${.IMPSRC} > ${.TARGET}  
   # Platform-independent linker flags for ELF shared libraries
   .if (${OBJECT_FMT} == "ELF")
   SHLIB_WHOLE=--whole-archive
   SHLIB_NOWHOLE=--no-whole-archive
   SHLIB_SOVERSION=${SHLIB_MAJOR}
   SHLIB_SHFLAGS=-soname lib${LIB}.so.${SHLIB_SOVERSION}
   .endif
   
   CFLAGS+=        ${COPTS}
   
 .c.o:  .c.o:
         ${CC} ${CFLAGS} -c ${.IMPSRC}          @echo ${COMPILE.c:Q} ${.IMPSRC}
         @${LD} -x -r ${.TARGET}          @${COMPILE.c} ${.IMPSRC} -o ${.TARGET}.o
         @mv a.out ${.TARGET}          @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
           @rm -f ${.TARGET}.o
   
 .c.po:  .c.po:
         ${CC} -p ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET}          @echo ${COMPILE.c:Q} -pg ${.IMPSRC} -o ${.TARGET}
         @${LD} -X -r ${.TARGET}          @${COMPILE.c} -pg ${.IMPSRC} -o ${.TARGET}.o
         @mv a.out ${.TARGET}          @${LD} -X -r ${.TARGET}.o -o ${.TARGET}
           @rm -f ${.TARGET}.o
 .s.o:  
         ${CPP} -E ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} | \  .c.so:
             ${AS} -o ${.TARGET}          @echo ${COMPILE.c:Q} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}
         @${LD} -x -r ${.TARGET}          @${COMPILE.c} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}.o
         @mv a.out ${.TARGET}          @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
           @rm -f ${.TARGET}.o
 .s.po:  
         ${CPP} -E -DPROF ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} | \  .c.ln:
             ${AS} -o ${.TARGET}          ${LINT} ${LINTFLAGS} ${CPPFLAGS:M-[IDU]*} -i ${.IMPSRC}
         @${LD} -X -r ${.TARGET}  
         @mv a.out ${.TARGET}  .cc.o .C.o:
           @echo ${COMPILE.cc:Q} ${.IMPSRC}
           @${COMPILE.cc} ${.IMPSRC} -o ${.TARGET}.o
           @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
           @rm -f ${.TARGET}.o
   
   .cc.po .C.po:
           @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
   
   .cc.so .C.so:
           @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
   
   .m.o:
           @echo ${COMPILE.m:Q} ${.IMPSRC}
           @${COMPILE.m} ${.IMPSRC} -o ${.TARGET}.o
           @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
           @rm -f ${.TARGET}.o
   
   .m.po:
           @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
   
   .m.so:
           @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
   
   .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
   
 MANALL= ${MAN1} ${MAN2} ${MAN3} ${MAN4} ${MAN5} ${MAN6} ${MAN7} ${MAN8}  .if !defined(NOSTATICLIB) || defined(NOPIC) || \
           (defined(LDSTATIC) && ${LDSTATIC} != "")
   _LIBS=lib${LIB}.a
   .else
   _LIBS=
   .endif
   
 .if !defined(NOPROFILE)  .if !defined(NOPROFILE)
 _LIBS=lib${LIB}.a lib${LIB}_p.a  _LIBS+=lib${LIB}_p.a
 .else  
 _LIBS=lib${LIB}.a  
 .endif  .endif
   
 all: ${_LIBS} ${MANALL}# llib-l${LIB}.ln  .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
   
 OBJS+=  ${SRCS:R:S/$/.o/g}  .if !defined(NOLINT)
   _LIBS+=llib-l${LIB}.ln
   .endif
   
   all: ${SRCS} ${_LIBS}
   
   __archivebuild: .USE
           @rm -f ${.TARGET}
           @${AR} cq ${.TARGET} `NM=${NM} ${LORDER} ${.ALLSRC} | ${TSORT}`
           ${RANLIB} ${.TARGET}
   
   __archiveinstall: .USE
           ${INSTALL} ${COPY} -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}  OBJS+=          ${SRCS:N*.h:N*.sh:R:S/$/.o/g}
   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}  POBJS+=         ${OBJS:.o=.po}
 lib${LIB}_p.a:: ${POBJS}  lib${LIB}_p.a:: ${POBJS} __archivebuild
         @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}  SOBJS+=         ${OBJS:.o=.so}
         ranlib lib${LIB}_p.a  lib${LIB}_pic.a:: ${SOBJS} __archivebuild
           @echo building shared object ${LIB} library
 llib-l${LIB}.ln: ${SRCS}  
         ${LINT} -C${LIB} ${CFLAGS} ${.ALLSRC:M*.c}  lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}: lib${LIB}_pic.a ${DPADD} \
       ${SHLIB_LDSTARTFILE} ${SHLIB_LDENDFILE}
 .if !target(clean)          @echo building shared ${LIB} library \(version ${SHLIB_MAJOR}.${SHLIB_MINOR}\)
 clean:          @rm -f lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
         rm -f a.out Errs errs mklog core ${CLEANFILES} ${OBJS} ${POBJS} \          $(LD) -x -shared ${SHLIB_SHFLAGS} -o ${.TARGET} \
             profiled/*.o lib${LIB}.a lib${LIB}_p.a llib-l${LIB}.ln              ${SHLIB_LDSTARTFILE} \
 .endif              --whole-archive lib${LIB}_pic.a --no-whole-archive ${LDADD} \
               ${SHLIB_LDENDFILE}
 .if !target(cleandir)  .if (${OBJECT_FMT} == "ELF")
 cleandir:          rm -f lib${LIB}.so.${SHLIB_MAJOR}
         rm -f a.out Errs errs mklog core ${CLEANFILES} ${OBJS} ${POBJS} \          ln -s lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
             profiled/*.o lib${LIB}.a lib${LIB}_p.a llib-l${LIB}.ln              lib${LIB}.so.${SHLIB_MAJOR}
         rm -f ${MANALL} ${.CURDIR}/tags .depend          rm -f lib${LIB}.so
 .endif          ln -s lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
               lib${LIB}.so
 .if !target(depend)  .endif
 depend: .depend  
 .depend: ${SRCS}  LOBJS+=         ${LSRCS:.c=.ln} ${SRCS:M*.c:.c=.ln}
         mkdep ${CFLAGS:M-[ID+]*} ${AINC} ${.ALLSRC}  LLIBS?=         -lc
   llib-l${LIB}.ln: ${LOBJS}
           @echo building llib-l${LIB}.ln
           @rm -f llib-l${LIB}.ln
           @${LINT} -C${LIB} ${LOBJS} ${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)  .if !defined(NOSTATICLIB) || defined(NOPIC) || \
 beforeinstall:          (defined(LDSTATIC) && ${LDSTATIC} != "")
         @if [ ! -d "${DESTDIR}${LIBDIR}" ]; then \  libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}.a
                 /bin/rm -f ${DESTDIR}${LIBDIR} ; \  .if !defined(UPDATE)
                 mkdir -p ${DESTDIR}${LIBDIR} ; \  .PHONY: ${DESTDIR}${LIBDIR}/lib${LIB}.a
                 chown root.wheel ${DESTDIR}${LIBDIR} ; \  .endif
                 chmod 755 ${DESTDIR}${LIBDIR} ; \  .if !defined(BUILD)
         else \  ${DESTDIR}${LIBDIR}/lib${LIB}.a: .MADE
                 true ; \  
         fi  
 .endif  
   
 realinstall: beforeinstall  
         ranlib lib${LIB}.a  
         install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} lib${LIB}.a \  
             ${DESTDIR}${LIBDIR}  
         ${RANLIB} -t ${DESTDIR}${LIBDIR}/lib${LIB}.a  
         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  
 #       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: afterinstall  
 afterinstall: realinstall maninstall  
 .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
   
 .include <bsd.man.mk>  .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}.a
 .if !target(obj)  ${DESTDIR}${LIBDIR}/lib${LIB}.a: lib${LIB}.a __archiveinstall
 .if defined(NOOBJ)  
 obj:  
 .else  
 obj:  
         @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(NOPROFILE)
   libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
   .if !defined(UPDATE)
   .PHONY: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
   .endif
   .if !defined(BUILD)
   ${DESTDIR}${LIBDIR}/lib${LIB}_p.a: .MADE
   .endif
   
   .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
   ${DESTDIR}${LIBDIR}/lib${LIB}_p.a: lib${LIB}_p.a __archiveinstall
   .endif
   
   .if !defined(NOPIC) && !defined(NOPICINSTALL)
   libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a
   .if !defined(UPDATE)
   .PHONY: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a
   .endif
   .if !defined(BUILD)
   ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a: .MADE
   .endif
   
   .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a
   ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a: lib${LIB}_pic.a __archiveinstall
   .endif
   
   .if !defined(NOPIC) && defined(SHLIB_MAJOR) && defined(SHLIB_MINOR)
   libinstall:: ${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)
   ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}: .MADE
 .endif  .endif
   
   .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
   ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}: lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
           ${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} ${.ALLSRC} \
                   ${.TARGET}
   .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
           ln -s lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
               ${DESTDIR}${LIBDIR}/lib${LIB}.so
   .endif
   .endif
   
   .if !defined(NOLINT)
   libinstall:: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln
   .if !defined(UPDATE)
   .PHONY: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln
   .endif
   .if !defined(BUILD)
   ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln: .MADE
   .endif
   
   .PRECIOUS: ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln
   ${DESTDIR}${LINTLIBDIR}/llib-l${LIB}.ln: llib-l${LIB}.ln
           ${INSTALL} ${COPY} -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.8  
changed lines
  Added in v.1.137

CVSweb <webmaster@jp.NetBSD.org>