[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.70

version 1.47, 1994/02/09 23:50:36 version 1.70, 1996/09/23 18:15:48
Line 1 
Line 1 
 #       from: @(#)bsd.lib.mk    5.26 (Berkeley) 5/2/91  #       $NetBSD$
 #       $Id$  #       @(#)bsd.lib.mk  5.26 (Berkeley) 5/2/91
   
 .if exists(${.CURDIR}/../Makefile.inc)  .if exists(${.CURDIR}/../Makefile.inc)
 .include "${.CURDIR}/../Makefile.inc"  .include "${.CURDIR}/../Makefile.inc"
 .endif  .endif
   
   .include <bsd.own.mk>                           # for 'NOPIC' definition
   
 .if exists(${.CURDIR}/shlib_version)  .if exists(${.CURDIR}/shlib_version)
 SHLIB_MAJOR != . ${.CURDIR}/shlib_version ; echo $$major  SHLIB_MAJOR != . ${.CURDIR}/shlib_version ; echo $$major
 SHLIB_MINOR != . ${.CURDIR}/shlib_version ; echo $$minor  SHLIB_MINOR != . ${.CURDIR}/shlib_version ; echo $$minor
Line 12  SHLIB_MINOR != . ${.CURDIR}/shlib_versio
Line 14  SHLIB_MINOR != . ${.CURDIR}/shlib_versio
   
 .MAIN: all  .MAIN: all
   
 # prefer .S to a .c, add .po, remove stuff not used in the BSD libraries  # prefer .S to a .c, add .po, remove stuff not used in the BSD libraries.
 # .so used for PIC object files  # .so used for PIC object files.  .ln used for lint output files.
 .SUFFIXES:  .SUFFIXES:
 .SUFFIXES: .out .o .po .so .S .s .c .cc .C .f .y .l  .SUFFIXES: .out .o .po .so .S .s .c .cc .C .f .y .l .ln .m4
   
 .c.o:  .c.o:
         ${CC} ${CFLAGS} -c ${.IMPSRC}          @echo "${COMPILE.c} ${.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} -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
   
 .c.so:  .c.so:
         ${CC} ${PICFLAG} -DPIC ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET}          @echo "${COMPILE.c} ${PICFLAG} -DPIC ${.IMPSRC} -o ${.TARGET}"
         @${LD} -x -r ${.TARGET}          @${COMPILE.c} ${PICFLAG} -DPIC ${.IMPSRC} -o ${.TARGET}.o
         @mv a.out ${.TARGET}          @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
           @rm -f ${.TARGET}.o
   
   .c.ln:
           ${LINT} ${LINTFLAGS} ${CFLAGS:M-[IDU]*} -i ${.IMPSRC}
   
 .cc.o .C.o:  .cc.o .C.o:
         ${CXX} ${CXXFLAGS} -c ${.IMPSRC}          @echo "${COMPILE.cc} ${.IMPSRC}"
         @${LD} -x -r ${.TARGET}          @${COMPILE.cc} ${.IMPSRC} -o ${.TARGET}.o
         @mv a.out ${.TARGET}          @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
           @rm -f ${.TARGET}.o
   
 .cc.po .C.po:  .cc.po .C.po:
         ${CXX} -p ${CXXFLAGS} -c ${.IMPSRC} -o ${.TARGET}          @echo "${COMPILE.cc} -pg ${.IMPSRC} -o ${.TARGET}"
         @${LD} -X -r ${.TARGET}          @${COMPILE.cc} -pg ${.IMPSRC} -o ${.TARGET}.o
         @mv a.out ${.TARGET}          @${LD} -X -r ${.TARGET}.o -o ${.TARGET}
           @rm -f ${.TARGET}.o
   
 .cc.so .C.so:  .cc.so .C.so:
         ${CXX} ${PICFLAG} -DPIC ${CXXFLAGS} -c ${.IMPSRC} -o ${.TARGET}          @echo "${COMPILE.cc} ${PICFLAG} -DPIC ${.IMPSRC} -o ${.TARGET}"
         @${LD} -x -r ${.TARGET}          @${COMPILE.cc} ${PICFLAG} -DPIC ${.IMPSRC} -o ${.TARGET}.o
         @mv a.out ${.TARGET}          @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
           @rm -f ${.TARGET}.o
   
 .S.o .s.o:  .S.o .s.o:
         ${CPP} -E ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} | \          @echo "${COMPILE.S} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC}
             ${AS} -o ${.TARGET}          @${COMPILE.S} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}.o
         @${LD} -x -r ${.TARGET}          @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
         @mv a.out ${.TARGET}          @rm -f ${.TARGET}.o
   
 .S.po .s.po:  .S.po .s.po:
         ${CPP} -E -DPROF ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} | \          @echo "${COMPILE.S} -DPROF ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}.o"
             ${AS} -o ${.TARGET}          @${COMPILE.S} -DPROF ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}.o
         @${LD} -X -r ${.TARGET}          @${LD} -X -r ${.TARGET}.o -o ${.TARGET}
         @mv a.out ${.TARGET}          @rm -f ${.TARGET}.o
   
 .S.so .s.so:  .S.so .s.so:
         ${CPP} -E -DPIC ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} | \          @echo "${COMPILE.S} ${PICFLAG} -DPIC ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}.o"
             ${AS} -k -o ${.TARGET}          @${COMPILE.S} ${PICFLAG} -DPIC ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}.o
         @${LD} -x -r ${.TARGET}          @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
         @mv a.out ${.TARGET}          @rm -f ${.TARGET}.o
   
   .if !defined(PICFLAG)
   PICFLAG=-fpic
   .endif
   
 .if !defined(NOPROFILE)  .if !defined(NOPROFILE)
 _LIBS=lib${LIB}.a lib${LIB}_p.a  _LIBS=lib${LIB}.a lib${LIB}_p.a
Line 78  _LIBS+=lib${LIB}.so.${SHLIB_MAJOR}.${SHL
Line 93  _LIBS+=lib${LIB}.so.${SHLIB_MAJOR}.${SHL
 .endif  .endif
 .endif  .endif
   
 .if !defined(PICFLAG)  .if !defined(NOLINT)
 PICFLAG=-fpic  _LIBS+=llib-l${LIB}.ln
 .endif  .endif
   
 all: ${_LIBS} # llib-l${LIB}.ln  all: ${_LIBS} _SUBDIRUSE
   
 OBJS+=  ${SRCS:N*.h:R:S/$/.o/g}  OBJS+=  ${SRCS:N*.h:R:S/$/.o/g}
   
 lib${LIB}.a:: ${OBJS}  lib${LIB}.a:: ${OBJS}
         @echo building standard ${LIB} library          @echo building standard ${LIB} library
         @rm -f lib${LIB}.a          @rm -f lib${LIB}.a
         @${AR} cq lib${LIB}.a `lorder ${OBJS} | tsort`          @${AR} cq lib${LIB}.a `lorder ${OBJS} | tsort -q`
         ${RANLIB} lib${LIB}.a          ${RANLIB} lib${LIB}.a
   
 POBJS+= ${OBJS:.o=.po}  POBJS+= ${OBJS:.o=.po}
 lib${LIB}_p.a:: ${POBJS}  lib${LIB}_p.a:: ${POBJS}
         @echo building profiled ${LIB} library          @echo building profiled ${LIB} library
         @rm -f lib${LIB}_p.a          @rm -f lib${LIB}_p.a
         @${AR} cq lib${LIB}_p.a `lorder ${POBJS} | tsort`          @${AR} cq lib${LIB}_p.a `lorder ${POBJS} | tsort -q`
         ${RANLIB} lib${LIB}_p.a          ${RANLIB} lib${LIB}_p.a
   
 SOBJS+= ${OBJS:.o=.so}  SOBJS+= ${OBJS:.o=.so}
 lib${LIB}_pic.a:: ${SOBJS}  lib${LIB}_pic.a:: ${SOBJS}
         @echo building shared object ${LIB} library          @echo building shared object ${LIB} library
         @rm -f lib${LIB}_pic.a          @rm -f lib${LIB}_pic.a
         @${AR} cq lib${LIB}_pic.a `lorder ${SOBJS} | tsort`          @${AR} cq lib${LIB}_pic.a `lorder ${SOBJS} | tsort -q`
         ${RANLIB} lib${LIB}_pic.a          ${RANLIB} lib${LIB}_pic.a
   
 lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}: lib${LIB}_pic.a ${DPADD}  lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}: lib${LIB}_pic.a ${DPADD}
         @echo building shared ${LIB} library \(version ${SHLIB_MAJOR}.${SHLIB_MINOR}\)          @echo building shared ${LIB} library \(version ${SHLIB_MAJOR}.${SHLIB_MINOR}\)
         @rm -f lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}          @rm -f lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
         $(LD) -Bshareable -Bforcearchive \          $(LD) -x -Bshareable -Bforcearchive \
             -o lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} lib${LIB}_pic.a ${LDADD}              -o lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} lib${LIB}_pic.a ${LDADD}
   
 llib-l${LIB}.ln: ${SRCS}  LOBJS+= ${LSRCS:.c=.ln} ${SRCS:M*.c:.c=.ln}
         ${LINT} -C${LIB} ${CFLAGS} ${.ALLSRC:M*.c}  # the following looks XXX to me... -- cgd
   LLIBS?= -lc
   llib-l${LIB}.ln: ${LOBJS}
           @echo building llib-l${LIB}.ln
           @rm -f llib-l${LIB}.ln
           @${LINT} -C${LIB} ${LOBJS} ${LLIBS}
   
 .if !target(clean)  .if !target(clean)
 clean:  clean: _SUBDIRUSE
         rm -f a.out Errs errs mklog core ${CLEANFILES}          rm -f a.out [Ee]rrs mklog core *.core ${CLEANFILES}
         rm -f ${OBJS}          rm -f lib${LIB}.a ${OBJS}
         rm -f ${POBJS} profiled/*.o          rm -f lib${LIB}_p.a ${POBJS}
         rm -f ${SOBJS} shared/*.o          rm -f lib${LIB}_pic.a lib${LIB}.so.*.* ${SOBJS}
         rm -f lib${LIB}.a lib${LIB}_p.a lib${LIB}_pic.a llib-l${LIB}.ln          rm -f llib-l${LIB}.ln ${LOBJS}
         rm -f lib${LIB}.so.*.*  
 .endif  .endif
   
 cleandir: clean  cleandir: _SUBDIRUSE clean
   
 .if defined(SRCS)  .if defined(SRCS)
 afterdepend:  afterdepend: .depend
         @(TMP=/tmp/_depend$$$$; \          @(TMP=/tmp/_depend$$$$; \
             sed -e 's/^\([^\.]*\).o[ ]*:/\1.o \1.po \1.so:/' < .depend > $$TMP; \              sed -e 's/^\([^\.]*\).o[ ]*:/\1.o \1.po \1.so:/' \
                 < .depend > $$TMP; \
             mv $$TMP .depend)              mv $$TMP .depend)
 .endif  .endif
   
Line 141  beforeinstall:
Line 161  beforeinstall:
   
 realinstall:  realinstall:
 #       ranlib lib${LIB}.a  #       ranlib lib${LIB}.a
         install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} lib${LIB}.a \          install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m 600 lib${LIB}.a \
             ${DESTDIR}${LIBDIR}              ${DESTDIR}${LIBDIR}
         ${RANLIB} -t ${DESTDIR}${LIBDIR}/lib${LIB}.a          ${RANLIB} -t ${DESTDIR}${LIBDIR}/lib${LIB}.a
           chmod ${LIBMODE} ${DESTDIR}${LIBDIR}/lib${LIB}.a
 .if !defined(NOPROFILE)  .if !defined(NOPROFILE)
 #       ranlib lib${LIB}_p.a  #       ranlib lib${LIB}_p.a
         install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \          install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m 600 \
             lib${LIB}_p.a ${DESTDIR}${LIBDIR}              lib${LIB}_p.a ${DESTDIR}${LIBDIR}
         ${RANLIB} -t ${DESTDIR}${LIBDIR}/lib${LIB}_p.a          ${RANLIB} -t ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
           chmod ${LIBMODE} ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
 .endif  .endif
 .if !defined(NOPIC)  .if !defined(NOPIC)
 #       ranlib lib${LIB}_pic.a  #       ranlib lib${LIB}_pic.a
         install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \          install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m 600 \
             lib${LIB}_pic.a ${DESTDIR}${LIBDIR}              lib${LIB}_pic.a ${DESTDIR}${LIBDIR}
         ${RANLIB} -t ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a          ${RANLIB} -t ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a
           chmod ${LIBMODE} ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a
 .endif  .endif
 .if !defined(NOPIC) && defined(SHLIB_MAJOR) && defined(SHLIB_MINOR)  .if !defined(NOPIC) && defined(SHLIB_MAJOR) && defined(SHLIB_MINOR)
         install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \          install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
             lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} ${DESTDIR}${LIBDIR}              lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} ${DESTDIR}${LIBDIR}
 .endif  .endif
 #       install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \  .if !defined(NOLINT)
 #           llib-l${LIB}.ln ${DESTDIR}${LINTLIBDIR}          install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
               llib-l${LIB}.ln ${DESTDIR}${LINTLIBDIR}
   .endif
 .if defined(LINKS) && !empty(LINKS)  .if defined(LINKS) && !empty(LINKS)
         @set ${LINKS}; \          @set ${LINKS}; \
         while test $$# -ge 2; do \          while test $$# -ge 2; do \
Line 175  realinstall:
Line 200  realinstall:
         done; true          done; true
 .endif  .endif
   
 install: maninstall  install: maninstall _SUBDIRUSE
 maninstall: afterinstall  maninstall: afterinstall
 afterinstall: realinstall  afterinstall: realinstall
 realinstall: beforeinstall  realinstall: beforeinstall
Line 185  realinstall: beforeinstall
Line 210  realinstall: beforeinstall
 .include <bsd.man.mk>  .include <bsd.man.mk>
 .endif  .endif
   
   .if !defined(NONLS)
   .include <bsd.nls.mk>
   .endif
   
 .include <bsd.obj.mk>  .include <bsd.obj.mk>
 .include <bsd.dep.mk>  .include <bsd.dep.mk>
   .include <bsd.subdir.mk>
   .include <bsd.sys.mk>

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

CVSweb <webmaster@jp.NetBSD.org>