[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.34 and 1.86

version 1.34, 1993/10/27 00:58:31 version 1.86, 1997/03/15 11:35:04
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)
   SHLIB_MAJOR != . ${.CURDIR}/shlib_version ; echo $$major
   SHLIB_MINOR != . ${.CURDIR}/shlib_version ; echo $$minor
   .endif
   
 .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 .c .cc .C .f .y .l .0 .1 .2 .3 .4 .5 .6 .7 .8  .SUFFIXES: .out .o .po .so .S .s .c .cc .C .f .y .l .ln .m4
   
   
   # 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.
   # SHLIB_TYPE:           currently either "ELF" or "a.out".
   # 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_LDSTARTFILE:    ???
   # SHLIB_LDENDTILE:      ??
   # CPICFLAGS:    flags to compile .c files for .so objects.
   # APICFLAGS:    flags to assemble .S files for .so objects.
   
   .if (${MACHINE_ARCH} == "alpha")
   
   SHLIB_TYPE=ELF
   SHLIB_LDSTARTFILE= ${DESTDIR}/usr/lib/crtbeginS.o
   SHLIB_LDENDFILE= ${DESTDIR}/usr/lib/crtendS.o
   SHLIB_SOVERSION=${SHLIB_MAJOR}
   CPICFLAGS ?= -fpic -DPIC
   APICFLAGS ?= -DPIC
   
   .elif (${MACHINE_ARCH} == "mips")
   
   SHLIB_TYPE=ELF
   # still use gnu-derived ld.so on pmax; don't have or need lib<>.so support.
   SHLIB_LDSTARTFILE=
   SHLIB_LDENDFILE=
   SHLIB_SOVERSION=${SHLIB_MAJOR}
   
   # 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
   
   .else
   
   SHLIB_TYPE=a.out
   SHLIB_SOVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR}
   CPICFLAGS?= -fpic -DPIC
   APICFLAGS?= -fpic -DPIC
   
   .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
   
 .c.so:  .c.so:
         ${CC} ${PICFLAG} -DPIC ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET}          @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
   
   .c.ln:
           ${LINT} ${LINTFLAGS} ${CFLAGS:M-[IDU]*} -i ${.IMPSRC}
   
 .cc.o .C.o:  .cc.o .C.o:
         ${CXX} ${CXXFLAGS} -c ${.IMPSRC}          @echo ${COMPILE.cc:Q} ${.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:Q} -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:Q} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}
           @${COMPILE.cc} ${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} ${APICFLAGS} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}
           @${COMPILE.S} ${APICFLAGS} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}.o
           @${LD} -x -r ${.TARGET}.o -o ${.TARGET}
           @rm -f ${.TARGET}.o
   
 .s.o:  
         ${CPP} -E ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} | \  
             ${AS} -o ${.TARGET}  
         @${LD} -x -r ${.TARGET}  
         @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}  
   
 .s.so:  
         ${CPP} -E -DPIC ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} | \  
             ${AS} -k -o ${.TARGET}  
   
 .if !defined(NOPROFILE)  .if !defined(NOPROFILE)
 _LIBS=lib${LIB}.a lib${LIB}_p.a  _LIBS=lib${LIB}.a lib${LIB}_p.a
Line 62  _LIBS=lib${LIB}.a
Line 141  _LIBS=lib${LIB}.a
   
 .if !defined(NOPIC)  .if !defined(NOPIC)
 _LIBS+=lib${LIB}_pic.a  _LIBS+=lib${LIB}_pic.a
   .if defined(SHLIB_MAJOR) && defined(SHLIB_MINOR)
   _LIBS+=lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
   .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} cTq lib${LIB}.a `lorder ${OBJS} | tsort` ${LDADD}          @${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} cTq lib${LIB}_p.a `lorder ${POBJS} | tsort` ${LDADD}          @${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} cTq lib${LIB}_pic.a `lorder ${SOBJS} | tsort` ${LDADD}          @${AR} cq lib${LIB}_pic.a `lorder ${SOBJS} | tsort -q`
         ${RANLIB} lib${LIB}_pic.a          ${RANLIB} lib${LIB}_pic.a
   
 llib-l${LIB}.ln: ${SRCS}  lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}: lib${LIB}_pic.a ${DPADD}
         ${LINT} -C${LIB} ${CFLAGS} ${.ALLSRC:M*.c}          @echo building shared ${LIB} library \(version ${SHLIB_MAJOR}.${SHLIB_MINOR}\)
           @rm -f lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
   .if (${SHLIB_TYPE} == "a.out")
           $(LD) -x -Bshareable -Bforcearchive \
               -o lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} lib${LIB}_pic.a ${LDADD}
   .elif (${SHLIB_TYPE} == "ELF")
           $(LD) -x -shared -o lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
               -soname lib${LIB}.so.${SHLIB_SOVERSION}  ${SHLIB_LDSTARTFILE} \
               --whole-archive lib${LIB}_pic.a --no-whole-archive ${LDADD} \
               ${SHLIB_LDENDFILE}
   .endif
   
   LOBJS+= ${LSRCS:.c=.ln} ${SRCS:M*.c:.c=.ln}
   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:  cleanlib:
         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  
   
 cleandir: clean  clean: _SUBDIRUSE cleanlib
   cleandir: _SUBDIRUSE cleanlib
   .else
   cleandir: _SUBDIRUSE clean
   .endif
   
 .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 \1.ln:/' \
                 < .depend > $$TMP; \
             mv $$TMP .depend)              mv $$TMP .depend)
 .endif  .endif
   
 .if !target(install)  .if !target(install)
 .if !target(beforeinstall)  .if !target(beforeinstall)
 beforeinstall:  beforeinstall:
         @install -d -o root -g wheel -m 755 ${DESTDIR}${LIBDIR}  
 .endif  .endif
   
 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) && defined(INSTALL_PIC_ARCHIVE)  .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) && exists (${.CURDIR}/shlib_version)  .if !defined(NOPIC) && defined(SHLIB_MAJOR) && defined(SHLIB_MINOR)
         . ${.CURDIR}/shlib_version; \          ${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
         $(LD) -Bshareable -Bforcearchive -o lib${LIB}.so.$$major.$$minor lib${LIB}_pic.a              lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} ${DESTDIR}${LIBDIR}
         . ${.CURDIR}/shlib_version; \  .if (${SHLIB_TYPE} == "ELF")
         install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \          rm -f ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}
             lib${LIB}.so.$$major.$$minor ${DESTDIR}${LIBDIR}          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)
           ${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
               llib-l${LIB}.ln ${DESTDIR}${LINTLIBDIR}
 .endif  .endif
 #       install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \  
 #           llib-l${LIB}.ln ${DESTDIR}${LINTLIBDIR}  
 .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 158  realinstall:
Line 269  realinstall:
                 ln $$l $$t; \                  ln $$l $$t; \
         done; true          done; true
 .endif  .endif
   .if defined(SYMLINKS) && !empty(SYMLINKS)
           @set ${SYMLINKS}; \
           while test $$# -ge 2; do \
                   l=${DESTDIR}$$1; \
                   shift; \
                   t=${DESTDIR}$$1; \
                   shift; \
                   echo $$t -\> $$l; \
                   rm -f $$t; \
                   ln -s $$l $$t; \
           done; true
   .endif
   
 install: maninstall  install: maninstall _SUBDIRUSE
 maninstall: afterinstall  maninstall: afterinstall
 afterinstall: realinstall  afterinstall: realinstall
 realinstall: beforeinstall  realinstall: beforeinstall
Line 169  realinstall: beforeinstall
Line 292  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.34  
changed lines
  Added in v.1.86

CVSweb <webmaster@jp.NetBSD.org>