[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.7 and 1.111

version 1.7, 1993/04/08 17:18:44 version 1.111, 1997/05/27 18:51:12
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  .include <bsd.own.mk>
 LINTLIBDIR?=    /usr/libdata/lint  
 LIBGRP?=        bin  
 LIBOWN?=        bin  
 LIBMODE?=       444  
   
 STRIP?= -s  
   
 BINGRP?=        bin  
 BINOWN?=        bin  
 BINMODE?=       555  
   
 .MAIN: all  
   
 # 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:  .MAIN:          all
         nroff -mandoc ${.IMPSRC} > ${.TARGET}  .PHONY:         cleanlib libinstall
   realinstall:    libinstall
   clean cleandir: 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 .F .f .r .y .l .cl .p .h .sh .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:      ??
   # 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")
   
   SHLIB_TYPE=ELF
   SHLIB_LDSTARTFILE= ${BUILDDIR}/usr/lib/crtbeginS.o
   SHLIB_LDENDFILE= ${BUILDDIR}/usr/lib/crtendS.o
   SHLIB_SOVERSION=${SHLIB_MAJOR}
   CPICFLAGS ?= -fpic -DPIC
   CPPPICFLAGS?= -DPIC
   CAPICFLAGS?= ${CPPPICFLAGS} ${CPICFLAGS}
   APICFLAGS ?=
   
   .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_LDSTARTFILE=
   SHLIB_LDENDFILE=
   SHLIB_SOVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR}
   CPICFLAGS?= -fpic
   CPPPICFLAGS?= -DPIC
   CAPICFLAGS?= ${CPPPICFLAGS} ${CPICFLAGS}
   APICFLAGS?= -k
   
   .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} ${CFLAGS: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
   
   .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(NOPROFILE)  .if !defined(NOPROFILE)
 _LIBS=lib${LIB}.a lib${LIB}_p.a  _LIBS=lib${LIB}.a lib${LIB}_p.a
Line 55  _LIBS=lib${LIB}.a lib${LIB}_p.a
Line 151  _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: ${SRCS} ${_LIBS}
   
   __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}
   
 OBJS+=  ${SRCS:R:S/$/.o/g}  DPSRCS+=        ${SRCS:M*.l:.l=.c} ${SRCS:M*.y:.y=.c}
   CLEANFILES+=    ${DPSRCS}
   
 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  .if defined(OBJDIR)
         @${AR} cTq lib${LIB}.a `lorder ${OBJS} | tsort` ${LDADD}          @echo install -d ${BUILDDIR}${LIBDIR}
         ranlib lib${LIB}.a          @install -d ${BUILDDIR}${LIBDIR}
           @echo ${BUILDDIR}${LIBDIR}/${.TARGET} '->' `pwd`/${.TARGET};
           @rm -f ${BUILDDIR}${LIBDIR}/${.TARGET};
           @ln -s `pwd`/${.TARGET} ${BUILDDIR}${LIBDIR}/${.TARGET};
   .endif
   
 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  .if defined(OBJDIR)
         @${AR} cTq lib${LIB}_p.a `lorder ${POBJS} | tsort` ${LDADD}          @echo install -d ${BUILDDIR}${LIBDIR}
         ranlib lib${LIB}_p.a          @install -d ${BUILDDIR}${LIBDIR}
           @echo ${BUILDDIR}${LIBDIR}/${.TARGET} '->' `pwd`/${.TARGET};
 llib-l${LIB}.ln: ${SRCS}          @rm -f ${BUILDDIR}${LIBDIR}/${.TARGET};
         ${LINT} -C${LIB} ${CFLAGS} ${.ALLSRC:M*.c}          @ln -s `pwd`/${.TARGET} ${BUILDDIR}${LIBDIR}/${.TARGET};
   .endif
 .if !target(clean)  
 clean:  SOBJS+=         ${OBJS:.o=.so}
         rm -f a.out Errs errs mklog core ${CLEANFILES} ${OBJS} ${POBJS} \  lib${LIB}_pic.a:: ${SOBJS} __archivebuild
             profiled/*.o lib${LIB}.a lib${LIB}_p.a llib-l${LIB}.ln          @echo building shared object ${LIB} library
 .endif  .if defined(OBJDIR)
           @echo install -d ${BUILDDIR}${LIBDIR}
 .if !target(cleandir)          @install -d ${BUILDDIR}${LIBDIR}
 cleandir:          @echo ${BUILDDIR}${LIBDIR}/${.TARGET} '->' `pwd`/${.TARGET};
         rm -f a.out Errs errs mklog core ${CLEANFILES} ${OBJS} ${POBJS} \          @rm -f ${BUILDDIR}${LIBDIR}/${.TARGET};
             profiled/*.o lib${LIB}.a lib${LIB}_p.a llib-l${LIB}.ln          @ln -s `pwd`/${.TARGET} ${BUILDDIR}${LIBDIR}/${.TARGET};
         rm -f ${MANALL} ${.CURDIR}/tags .depend  .endif
 .endif  
   lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}: lib${LIB}_pic.a ${DPADD} \
 .if !target(depend)      ${SHLIB_LDSTARTFILE} ${SHLIB_LDENDFILE}
 depend: .depend          @echo building shared ${LIB} library \(version ${SHLIB_MAJOR}.${SHLIB_MINOR}\)
 .depend: ${SRCS}          @rm -f lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
         mkdep ${CFLAGS:M-[ID]*} ${AINC} ${.ALLSRC}  .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
   .if defined(OBJDIR)
           @echo install -d ${BUILDDIR}${LIBDIR}
           @install -d ${BUILDDIR}${LIBDIR}
           @echo ${BUILDDIR}${LIBDIR}/${.TARGET} '->' `pwd`/${.TARGET};
           @rm -f ${BUILDDIR}${LIBDIR}/${.TARGET};
           @ln -s `pwd`/${.TARGET} ${BUILDDIR}${LIBDIR}/${.TARGET};
   .if (${SHLIB_TYPE} == "ELF")
           rm -f ${BUILDDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}
           ln -s lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
               ${BUILDDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}
           rm -f ${BUILDDIR}${LIBDIR}/lib${LIB}.so
           ln -s lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \
               ${BUILDDIR}${LIBDIR}/lib${LIB}.so
   .endif  # SHLIB_TYPE == ELF
   .endif  # defined(OBJDIR)
   
   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}
   
   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.*.* ${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)  libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}.a
 beforeinstall:  .if !defined(UPDATE)
         @if [ ! -d "${DESTDIR}${LIBDIR}" ]; then \  .PHONY: ${DESTDIR}${LIBDIR}/lib${LIB}.a
                 /bin/rm -f ${DESTDIR}${LIBDIR} ; \  .endif
                 mkdir -p ${DESTDIR}${LIBDIR} ; \  .if !defined(BUILD)
                 chown root.wheel ${DESTDIR}${LIBDIR} ; \  ${DESTDIR}${LIBDIR}/lib${LIB}.a: .MADE
                 chmod 755 ${DESTDIR}${LIBDIR} ; \  .endif
         else \  
                 true ; \  .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}.a
         fi  ${DESTDIR}${LIBDIR}/lib${LIB}.a: lib${LIB}.a __archiveinstall
 .endif  
   .if !defined(NOPROFILE)
 realinstall: beforeinstall  libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
         ranlib lib${LIB}.a  .if !defined(UPDATE)
         install -c -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} lib${LIB}.a \  .PHONY: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
             ${DESTDIR}${LIBDIR}  .endif
         ${RANLIB} -t ${DESTDIR}${LIBDIR}/lib${LIB}.a  .if !defined(BUILD)
         ranlib lib${LIB}_p.a  ${DESTDIR}${LIBDIR}/lib${LIB}_p.a: .MADE
         install -c -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \  .endif
             lib${LIB}_p.a ${DESTDIR}${LIBDIR}  
         ${RANLIB} -t ${DESTDIR}${LIBDIR}/lib${LIB}_p.a  .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}_p.a
 #       install -c -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \  ${DESTDIR}${LIBDIR}/lib${LIB}_p.a: lib${LIB}_p.a __archiveinstall
 #           llib-l${LIB}.ln ${DESTDIR}${LINTLIBDIR}  .endif
 .if defined(LINKS) && !empty(LINKS)  
         @set ${LINKS}; \  .if !defined(NOPIC)
         while test $$# -ge 2; do \  libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a
                 l=${DESTDIR}$$1; \  .if !defined(UPDATE)
                 shift; \  .PHONY: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a
                 t=${DESTDIR}$$1; \  .endif
                 shift; \  .if !defined(BUILD)
                 echo $$t -\> $$l; \  ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a: .MADE
                 rm -f $$t; \  .endif
                 ln $$l $$t; \  
         done; true  .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a
 .endif  ${DESTDIR}${LIBDIR}/lib${LIB}_pic.a: lib${LIB}_pic.a __archiveinstall
   .endif
 install: afterinstall  
 afterinstall: realinstall maninstall  .if !defined(NOPIC) && defined(SHLIB_MAJOR) && defined(SHLIB_MINOR)
 .endif  libinstall:: ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
   .if !defined(UPDATE)
 .if !target(lint)  .PHONY: ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
 lint:  .endif
 .endif  .if !defined(BUILD)
   ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}: .MADE
 .if !target(tags)  .endif
 tags: ${SRCS}  
         -cd ${.CURDIR}; ctags -f /dev/stdout ${.ALLSRC:M*.c} | \  .PRECIOUS: ${DESTDIR}${LIBDIR}/lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR}
             sed "s;\${.CURDIR}/;;" > tags  ${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  .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
   .endif
   
   .if !defined(NOMAN)
 .include <bsd.man.mk>  .include <bsd.man.mk>
 .if !target(obj)  
 .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(NONLS)
   .include <bsd.nls.mk>
 .endif  .endif
   
   .include <bsd.obj.mk>
   .include <bsd.files.mk>
   .include <bsd.inc.mk>
   .include <bsd.links.mk>
   .include <bsd.dep.mk>
   .include <bsd.subdir.mk>
   .include <bsd.sys.mk>

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.111

CVSweb <webmaster@jp.NetBSD.org>