Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/share/mk/bsd.lib.mk,v rcsdiff: /ftp/cvs/cvsroot/src/share/mk/bsd.lib.mk,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.3 retrieving revision 1.21 diff -u -p -r1.3 -r1.21 --- src/share/mk/bsd.lib.mk 1993/03/23 07:26:50 1.3 +++ src/share/mk/bsd.lib.mk 1993/07/30 03:40:07 1.21 @@ -20,7 +20,7 @@ BINMODE?= 555 # 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 +.SUFFIXES: .out .o .po .s .c .cc .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: nroff -mandoc ${.IMPSRC} > ${.TARGET} @@ -35,6 +35,16 @@ BINMODE?= 555 @${LD} -X -r ${.TARGET} @mv a.out ${.TARGET} +.cc.o .C.o: + ${CXX} ${CXXFLAGS} -c ${.IMPSRC} + @${LD} -x -r ${.TARGET} + @mv a.out ${.TARGET} + +.cc.po .C.po: + ${CXX} -p ${CXXFLAGS} -c ${.IMPSRC} -o ${.TARGET} + @${LD} -X -r ${.TARGET} + @mv a.out ${.TARGET} + .s.o: ${CPP} -E ${CFLAGS:M-[ID]*} ${AINC} ${.IMPSRC} | \ ${AS} -o ${.TARGET} @@ -47,7 +57,9 @@ BINMODE?= 555 @${LD} -X -r ${.TARGET} @mv a.out ${.TARGET} +.if !defined(NOMAN) MANALL= ${MAN1} ${MAN2} ${MAN3} ${MAN4} ${MAN5} ${MAN6} ${MAN7} ${MAN8} +.endif .if !defined(NOPROFILE) _LIBS=lib${LIB}.a lib${LIB}_p.a @@ -57,61 +69,83 @@ _LIBS=lib${LIB}.a all: ${_LIBS} ${MANALL}# llib-l${LIB}.ln -OBJS+= ${SRCS:R:S/$/.o/g} +OBJS+= ${SRCS:N*.h:R:S/$/.o/g} lib${LIB}.a:: ${OBJS} @echo building standard ${LIB} library @rm -f lib${LIB}.a @${AR} cTq lib${LIB}.a `lorder ${OBJS} | tsort` ${LDADD} - ranlib lib${LIB}.a + ${RANLIB} lib${LIB}.a POBJS+= ${OBJS:.o=.po} lib${LIB}_p.a:: ${POBJS} @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 + ${RANLIB} lib${LIB}_p.a llib-l${LIB}.ln: ${SRCS} ${LINT} -C${LIB} ${CFLAGS} ${.ALLSRC:M*.c} .if !target(clean) clean: - rm -f a.out Errs errs mklog core ${CLEANFILES} ${OBJS} ${POBJS} \ - profiled/*.o lib${LIB}.a lib${LIB}_p.a llib-l${LIB}.ln + rm -f a.out Errs errs mklog core ${CLEANFILES} + rm -f ${OBJS} + rm -f ${POBJS} profiled/*.o + rm -f lib${LIB}.a lib${LIB}_p.a llib-l${LIB}.ln .endif .if !target(cleandir) cleandir: - rm -f a.out Errs errs mklog core ${CLEANFILES} ${OBJS} ${POBJS} \ - profiled/*.o lib${LIB}.a lib${LIB}_p.a llib-l${LIB}.ln + rm -f a.out Errs errs mklog core ${CLEANFILES} + rm -f ${OBJS} + rm -f ${POBJS} profiled/*.o + rm -f lib${LIB}.a lib${LIB}_p.a llib-l${LIB}.ln rm -f ${MANALL} ${.CURDIR}/tags .depend .endif .if !target(depend) depend: .depend .depend: ${SRCS} - mkdep ${CFLAGS:M-[ID]*} ${AINC} ${.ALLSRC} + 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$$$$; \ - sed -e 's/^\([^\.]*\).o:/\1.o \1.po:/' < .depend > $$TMP; \ + sed -e 's/^\([^\.]*\).o[ ]*:/\1.o \1.po:/' < .depend > $$TMP; \ mv $$TMP .depend) .endif .if !target(install) .if !target(beforeinstall) beforeinstall: + @if [ ! -d "${DESTDIR}${LIBDIR}" ]; then \ + /bin/rm -f ${DESTDIR}${LIBDIR} ; \ + mkdir -p ${DESTDIR}${LIBDIR} ; \ + chown root.wheel ${DESTDIR}${LIBDIR} ; \ + chmod 755 ${DESTDIR}${LIBDIR} ; \ + else \ + true ; \ + fi .endif -realinstall: beforeinstall - ranlib lib${LIB}.a - install -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} lib${LIB}.a \ +realinstall: +# ranlib lib${LIB}.a + install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} lib${LIB}.a \ ${DESTDIR}${LIBDIR} ${RANLIB} -t ${DESTDIR}${LIBDIR}/lib${LIB}.a - ranlib lib${LIB}_p.a - install -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ +.if !defined(NOPROFILE) +# ranlib lib${LIB}_p.a + install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ lib${LIB}_p.a ${DESTDIR}${LIBDIR} ${RANLIB} -t ${DESTDIR}${LIBDIR}/lib${LIB}_p.a -# install -c -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ +.endif +# install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ # llib-l${LIB}.ln ${DESTDIR}${LINTLIBDIR} .if defined(LINKS) && !empty(LINKS) @set ${LINKS}; \ @@ -126,8 +160,10 @@ realinstall: beforeinstall done; true .endif -install: afterinstall -afterinstall: realinstall maninstall +install: maninstall +maninstall: afterinstall +afterinstall: realinstall +realinstall: beforeinstall .endif .if !target(lint) @@ -140,7 +176,10 @@ tags: ${SRCS} sed "s;\${.CURDIR}/;;" > tags .endif +.if !defined(NOMAN) .include +.endif + .if !target(obj) .if defined(NOOBJ) obj: @@ -159,9 +198,9 @@ obj: else \ true ; \ dest=$$here/obj ; \ - echo "making $$here/obj" ; \ if test ! -d obj ; then \ - mkdir $$here/obj; \ + echo "making $$dest" ; \ + mkdir $$dest; \ fi; \ fi; .endif