[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.113 and 1.114

version 1.113, 1997/05/29 15:37:11 version 1.114, 1997/05/30 01:54:42
Line 181  CLEANFILES+= ${DPSRCS}
Line 181  CLEANFILES+= ${DPSRCS}
 OBJS+=          ${SRCS:N*.h:N*.sh:R:S/$/.o/g}  OBJS+=          ${SRCS:N*.h:N*.sh:R:S/$/.o/g}
 lib${LIB}.a:: ${OBJS} __archivebuild  lib${LIB}.a:: ${OBJS} __archivebuild
         @echo building standard ${LIB} library          @echo building standard ${LIB} library
 .if defined(OBJDIR)  .if defined(OBJDIR) && !defined(NOINSTALL)
         @echo install -d ${BUILDDIR}${LIBDIR}          @echo install -d ${BUILDDIR}${LIBDIR}
         @install -d ${BUILDDIR}${LIBDIR}          @install -d ${BUILDDIR}${LIBDIR}
         @echo ${BUILDDIR}${LIBDIR}/${.TARGET} '->' `pwd`/${.TARGET};          @echo ${BUILDDIR}${LIBDIR}/${.TARGET} '->' `pwd`/${.TARGET};
Line 192  lib${LIB}.a:: ${OBJS} __archivebuild
Line 192  lib${LIB}.a:: ${OBJS} __archivebuild
 POBJS+=         ${OBJS:.o=.po}  POBJS+=         ${OBJS:.o=.po}
 lib${LIB}_p.a:: ${POBJS} __archivebuild  lib${LIB}_p.a:: ${POBJS} __archivebuild
         @echo building profiled ${LIB} library          @echo building profiled ${LIB} library
 .if defined(OBJDIR)  .if defined(OBJDIR) && !defined(NOINSTALL)
         @echo install -d ${BUILDDIR}${LIBDIR}          @echo install -d ${BUILDDIR}${LIBDIR}
         @install -d ${BUILDDIR}${LIBDIR}          @install -d ${BUILDDIR}${LIBDIR}
         @echo ${BUILDDIR}${LIBDIR}/${.TARGET} '->' `pwd`/${.TARGET};          @echo ${BUILDDIR}${LIBDIR}/${.TARGET} '->' `pwd`/${.TARGET};
Line 203  lib${LIB}_p.a:: ${POBJS} __archivebuild
Line 203  lib${LIB}_p.a:: ${POBJS} __archivebuild
 SOBJS+=         ${OBJS:.o=.so}  SOBJS+=         ${OBJS:.o=.so}
 lib${LIB}_pic.a:: ${SOBJS} __archivebuild  lib${LIB}_pic.a:: ${SOBJS} __archivebuild
         @echo building shared object ${LIB} library          @echo building shared object ${LIB} library
 .if defined(OBJDIR)  .if defined(OBJDIR) && !defined(NOINSTALL)
         @echo install -d ${BUILDDIR}${LIBDIR}          @echo install -d ${BUILDDIR}${LIBDIR}
         @install -d ${BUILDDIR}${LIBDIR}          @install -d ${BUILDDIR}${LIBDIR}
         @echo ${BUILDDIR}${LIBDIR}/${.TARGET} '->' `pwd`/${.TARGET};          @echo ${BUILDDIR}${LIBDIR}/${.TARGET} '->' `pwd`/${.TARGET};
Line 224  lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINO
Line 224  lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINO
             --whole-archive lib${LIB}_pic.a --no-whole-archive \              --whole-archive lib${LIB}_pic.a --no-whole-archive \
             -L${BUILDDIR}/usr/lib ${LDADD} ${SHLIB_LDENDFILE}              -L${BUILDDIR}/usr/lib ${LDADD} ${SHLIB_LDENDFILE}
 .endif  .endif
 .if defined(OBJDIR)  .if defined(OBJDIR) && !defined(NOINSTALL)
         @echo install -d ${BUILDDIR}${LIBDIR}          @echo install -d ${BUILDDIR}${LIBDIR}
         @install -d ${BUILDDIR}${LIBDIR}          @install -d ${BUILDDIR}${LIBDIR}
         @echo ${BUILDDIR}${LIBDIR}/${.TARGET} '->' `pwd`/${.TARGET};          @echo ${BUILDDIR}${LIBDIR}/${.TARGET} '->' `pwd`/${.TARGET};
Line 262  afterdepend: .depend
Line 262  afterdepend: .depend
             mv $$TMP .depend)              mv $$TMP .depend)
 .endif  .endif
   
   # Define NOINSTALL if this is a library that is used during the build
   # only, and should not be installed into DESTDIR.
   .if defined(NOINSTALL)
   libinstall::
   .endif
   
 .if !target(libinstall)  .if !target(libinstall)
 libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}.a  libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}.a
 .if !defined(UPDATE)  .if !defined(UPDATE)

Legend:
Removed from v.1.113  
changed lines
  Added in v.1.114

CVSweb <webmaster@jp.NetBSD.org>