[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.22 and 1.96

version 1.22, 1993/08/15 19:26:06 version 1.96, 1997/05/07 08:42: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 exists(${.CURDIR}/../Makefile.inc)  .if exists(${.CURDIR}/../Makefile.inc)
 .include "${.CURDIR}/../Makefile.inc"  .include "${.CURDIR}/../Makefile.inc"
 .endif  .endif
   
 LIBDIR?=        /usr/lib  .MAIN:          all
 LINTLIBDIR?=    /usr/libdata/lint  .PHONY:         cleanlib libinstall
 LIBGRP?=        bin  
 LIBOWN?=        bin  
 LIBMODE?=       444  
   
 STRIP?= -s  .include <bsd.own.mk>                           # for 'NOPIC' definition
   
 BINGRP?=        bin  .if exists(${.CURDIR}/shlib_version)
 BINOWN?=        bin  SHLIB_MAJOR != . ${.CURDIR}/shlib_version ; echo $$major
 BINMODE?=       555  SHLIB_MINOR != . ${.CURDIR}/shlib_version ; echo $$minor
   .endif
 .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.  .ln used for lint output files.
 .SUFFIXES:  .SUFFIXES:
 .SUFFIXES: .out .o .po .s .c .cc .C .f .y .l .8 .7 .6 .5 .4 .3 .2 .1 .0  .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
   
 .8.0 .7.0 .6.0 .5.0 .4.0 .3.0 .2.0 .1.0:  SHLIB_TYPE=a.out
         nroff -mandoc ${.IMPSRC} > ${.TARGET}  SHLIB_LDSTARTFILE=
   SHLIB_LDENDFILE=
   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:
           @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
 .s.o:  
         ${CPP} -E ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} | \  .cc.so .C.so:
             ${AS} -o ${.TARGET}          @echo ${COMPILE.cc:Q} ${CPICFLAGS} ${.IMPSRC} -o ${.TARGET}
         @${LD} -x -r ${.TARGET}          @${COMPILE.cc} ${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} | \  .S.o .s.o:
             ${AS} -o ${.TARGET}          @echo ${COMPILE.S:Q} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC}
         @${LD} -X -r ${.TARGET}          @${COMPILE.S} ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} -o ${.TARGET}.o
         @mv a.out ${.TARGET}          @${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
   
 .if !defined(NOMAN)  
 MANALL= ${MAN1} ${MAN2} ${MAN3} ${MAN4} ${MAN5} ${MAN6} ${MAN7} ${MAN8}  
 .endif  
   
 .if !defined(NOPROFILE)  .if !defined(NOPROFILE)
 _LIBS=lib${LIB}.a lib${LIB}_p.a  _LIBS=lib${LIB}.a lib${LIB}_p.a
Line 67  _LIBS=lib${LIB}.a lib${LIB}_p.a
Line 142  _LIBS=lib${LIB}.a lib${LIB}_p.a
 _LIBS=lib${LIB}.a  _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
   
   .if !defined(NOLINT)
   _LIBS+=llib-l${LIB}.ln
   .endif
   
   all: ${_LIBS} _SUBDIRUSE
   
 OBJS+=  ${SRCS:N*.h:R:S/$/.o/g}  OBJS+=  ${SRCS:N*.h:R:S/$/.o/g}
   
 lib${LIB}.a:: ${OBJS}  __archivebuild: .USE
           @rm -f ${.TARGET}
           @${AR} cq ${.TARGET} `NM=${NM} lorder ${.ALLSRC} | tsort -q`
           ${RANLIB} ${.TARGET}
   
   __archiveinstall: .USE
           ${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m 600 ${.ALLSRC} \
                   ${.TARGET}
           ${RANLIB} -t ${.TARGET}
           chmod ${LIBMODE} ${.TARGET}
   
   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}  
         ${RANLIB} lib${LIB}_p.a  
   
 llib-l${LIB}.ln: ${SRCS}  SOBJS+= ${OBJS:.o=.so}
         ${LINT} -C${LIB} ${CFLAGS} ${.ALLSRC:M*.c}  lib${LIB}_pic.a:: ${SOBJS} __archivebuild
           @echo building shared object ${LIB} library
   
   lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}: lib${LIB}_pic.a ${DPADD} \
       ${SHLIB_LDSTARTFILE} ${SHLIB_LDENDFILE}
           @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 ${.TARGET} lib${LIB}_pic.a ${LDADD}
   .elif (${SHLIB_TYPE} == "ELF")
           $(LD) -x -shared -o ${.TARGET} \
               -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 lib${LIB}.a lib${LIB}_p.a llib-l${LIB}.ln          rm -f lib${LIB}_pic.a lib${LIB}.so.*.* ${SOBJS}
 .endif          rm -f llib-l${LIB}.ln ${LOBJS}
   
 .if !target(cleandir)  clean: _SUBDIRUSE cleanlib
 cleandir:  cleandir: _SUBDIRUSE cleanlib
         rm -f a.out Errs errs mklog core ${CLEANFILES}  .else
         rm -f ${OBJS}  cleandir: _SUBDIRUSE clean
         rm -f ${POBJS} profiled/*.o  .endif
         rm -f lib${LIB}.a lib${LIB}_p.a llib-l${LIB}.ln  
         rm -f ${MANALL} ${.CURDIR}/tags .depend  .if defined(SRCS)
 .endif  afterdepend: .depend
   
 .if !target(depend)  
 depend: .depend  
 .depend: ${SRCS}  
         rm -f .depend  
         files="${.ALLSRC:M*.c}"; \  
         if [ "$$files" != "" ]; then \  
           mkdep -a ${MKDEP} ${CFLAGS:M-[ID]*} $$files; \  
         fi  
         files="${.ALLSRC:M*.cc} ${.ALLSRC:M*.C} ${.ALLSRC:M*.cxx}"; \  
         if [ "$$files" != "  " ]; then \  
           mkdep -a ${MKDEP} -+ ${CXXFLAGS:M-[ID]*} $$files; \  
         fi  
         @(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(install)
 .if !target(beforeinstall)  .if !target(beforeinstall)
 beforeinstall:  beforeinstall:
         @install -d -o root -g wheel -m 755 ${DESTDIR}${LIBDIR}  
 .endif  .endif
   
 realinstall:  libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}.a
 #       ranlib lib${LIB}.a  .if !defined(UPDATE)
         install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} lib${LIB}.a \  .PHONY: ${DESTDIR}${LIBDIR}/lib${LIB}.a
             ${DESTDIR}${LIBDIR}  .endif
         ${RANLIB} -t ${DESTDIR}${LIBDIR}/lib${LIB}.a  .if !defined(BUILD)
   ${DESTDIR}${LIBDIR}/lib${LIB}.a: .MADE
   .endif
   
   .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}.a
   ${DESTDIR}${LIBDIR}/lib${LIB}.a: lib${LIB}.a __archiveinstall
   
 .if !defined(NOPROFILE)  .if !defined(NOPROFILE)
 #       ranlib lib${LIB}_p.a  libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
         install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \  .if !defined(UPDATE)
             lib${LIB}_p.a ${DESTDIR}${LIBDIR}  .PHONY: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
         ${RANLIB} -t ${DESTDIR}${LIBDIR}/lib${LIB}_p.a  .endif
 .endif  .if !defined(BUILD)
 #       install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \  ${DESTDIR}${LIBDIR}/lib${LIB}_p.a: .MADE
 #           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  .endif
   
 install: maninstall  .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
 maninstall: afterinstall  ${DESTDIR}${LIBDIR}/lib${LIB}_p.a: lib${LIB}_p.a __archiveinstall
 afterinstall: realinstall  
 realinstall: beforeinstall  
 .endif  .endif
   
 .if !target(lint)  .if !defined(NOPIC)
 lint:  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  .endif
   
 .if !target(tags)  .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a
 tags: ${SRCS}  ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a: lib${LIB}_pic.a __archiveinstall
         -cd ${.CURDIR}; ctags -f /dev/stdout ${.ALLSRC:M*.c} | \  .endif
             sed "s;\${.CURDIR}/;;" > tags  
   .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
   
   .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 (${SHLIB_TYPE} == "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} \
               llib-l${LIB}.ln ${DESTDIR}${LINTLIBDIR}
   .endif
   
   libinstall:: linksinstall
   realinstall: libinstall filesinstall
   
   install: ${MANINSTALL} _SUBDIRUSE
   ${MANINSTALL}: afterinstall
   afterinstall: realinstall
   realinstall: beforeinstall
 .endif  .endif
   
 .if !defined(NOMAN)  .if !defined(NOMAN)
 .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.links.mk>
   .include <bsd.files.mk>
   .include <bsd.inc.mk>
   .include <bsd.dep.mk>
   .include <bsd.subdir.mk>
   .include <bsd.sys.mk>

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.96

CVSweb <webmaster@jp.NetBSD.org>