From afb7547b1d249b68744bfbd3888d2af97dc45b72 Mon Sep 17 00:00:00 2001 From: asami Date: Wed, 18 Jun 1997 03:39:34 +0000 Subject: Add `B' to list of flags to pass through from C*FLAGS when using mkdep (bsd.dep.mk) and compiling assembly language sources (bsd.lib.mk). This doesn't change anything for our current source tree, but if you want to use the -B switch in C*FLAGS to specify the location of compiler subprograms, now you can do it. Reviewed by: bde (implicitly) --- share/mk/bsd.dep.mk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'share/mk/bsd.dep.mk') diff --git a/share/mk/bsd.dep.mk b/share/mk/bsd.dep.mk index 91d4ee2..c94ba10 100644 --- a/share/mk/bsd.dep.mk +++ b/share/mk/bsd.dep.mk @@ -1,4 +1,4 @@ -# $Id: bsd.dep.mk,v 1.11 1997/04/09 16:10:23 bde Exp $ +# $Id: bsd.dep.mk,v 1.12 1997/04/13 06:44:20 jkh Exp $ # # The include file handles Makefile dependencies. # @@ -44,16 +44,16 @@ __depend_cc= ${SRCS:M*.cc} ${SRCS:M*.C} ${SRCS:M*.cxx} ${DEPENDFILE}: ${SRCS} rm -f ${DEPENDFILE} .if defined(__depend_s) && !empty(__depend_s) - ${MKDEPCMD} -f ${DEPENDFILE} -a ${MKDEP} ${CFLAGS:M-[ID]*} ${AINC} \ + ${MKDEPCMD} -f ${DEPENDFILE} -a ${MKDEP} ${CFLAGS:M-[BID]*} ${AINC} \ ${.ALLSRC:M*.[sS]} .endif .if defined(__depend_c) && !empty(__depend_c) - ${MKDEPCMD} -f ${DEPENDFILE} -a ${MKDEP} ${CFLAGS:M-[ID]*} \ + ${MKDEPCMD} -f ${DEPENDFILE} -a ${MKDEP} ${CFLAGS:M-[BID]*} \ ${.ALLSRC:M*.c} .endif .if defined(__depend_cc) && !empty(__depend_cc) ${MKDEPCMD} -f ${DEPENDFILE} -a ${MKDEP} \ - ${CXXFLAGS:M-nostd*} ${CXXFLAGS:M-[ID]*} \ + ${CXXFLAGS:M-nostd*} ${CXXFLAGS:M-[BID]*} \ ${.ALLSRC:M*.cc} ${.ALLSRC:M*.C} ${.ALLSRC:M*.cxx} .endif .if target(_EXTRADEPEND) -- cgit v1.1