Home | History | Annotate | Line # | Download | only in mk
bsd.dep.mk revision 1.62
      1  1.62       mrg #	$NetBSD: bsd.dep.mk,v 1.62 2003/10/28 01:25:33 mrg Exp $
      2  1.13       gwr 
      3  1.33        tv ##### Basic targets
      4  1.15   mycroft .PHONY:		cleandepend
      5  1.32        tv cleandir:	cleandepend
      6  1.33        tv realdepend:	beforedepend .depend afterdepend
      7  1.33        tv .ORDER:		beforedepend .depend afterdepend
      8  1.14   mycroft 
      9  1.33        tv beforedepend .depend afterdepend: # ensure existence
     10  1.33        tv 
     11  1.33        tv ##### Default values
     12  1.14   mycroft MKDEP?=		mkdep
     13   1.1   mycroft 
     14  1.33        tv ##### Build rules
     15   1.1   mycroft # some of the rules involve .h sources, so remove them from mkdep line
     16  1.33        tv 
     17  1.53     lukem .if defined(SRCS)							# {
     18  1.62       mrg _TRADITIONAL_CPP?=-traditional-cpp
     19  1.62       mrg __acpp_flags=	${_TRADITIONAL_CPP}
     20  1.48     lukem 
     21  1.55     lukem __DPSRCS.all=	${SRCS:C/\.(c|m|s|S|C|cc|cpp|cxx)$/.d/} \
     22  1.55     lukem 		${DPSRCS:C/\.(c|m|s|S|C|cc|cpp|cxx)$/.d/}
     23  1.55     lukem __DPSRCS.d=	${__DPSRCS.all:O:u:M*.d}
     24  1.55     lukem __DPSRCS.notd=	${__DPSRCS.all:O:u:N*.d}
     25  1.48     lukem 
     26  1.55     lukem .NOPATH: .depend ${__DPSRCS.d}
     27  1.53     lukem 
     28  1.56    martin .if !empty(__DPSRCS.d)							# {
     29  1.55     lukem ${__DPSRCS.d}: ${__DPSRCS.notd} ${DPSRCS}
     30  1.56    martin .endif									# }
     31  1.55     lukem 
     32  1.55     lukem .depend: ${__DPSRCS.d}
     33  1.60     lukem 	${_MKTARGET_CREATE}
     34  1.58     lukem 	rm -f .depend
     35  1.56    martin 	cat ${__DPSRCS.d} /dev/null > .depend
     36  1.39  christos 
     37  1.57     lukem .SUFFIXES: .d .s .S .c .C .cc .cpp .cxx .m
     38  1.49     lukem 
     39  1.51     lukem .c.d:
     40  1.60     lukem 	${_MKTARGET_CREATE}
     41  1.51     lukem 	${MKDEP} -f ${.TARGET} ${MKDEPFLAGS} ${CFLAGS:M-[ID]*} ${CPPFLAGS} \
     42  1.49     lukem 	    ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC}
     43  1.39  christos 
     44  1.51     lukem .m.d:
     45  1.60     lukem 	${_MKTARGET_CREATE}
     46  1.51     lukem 	${MKDEP} -f ${.TARGET} ${MKDEPFLAGS} ${OBJCFLAGS:M-[ID]*} \
     47  1.49     lukem 	    ${CPPFLAGS} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC}
     48  1.39  christos 
     49  1.51     lukem .s.d .S.d:
     50  1.60     lukem 	${_MKTARGET_CREATE}
     51  1.51     lukem 	${MKDEP} -f ${.TARGET} ${MKDEPFLAGS} ${AFLAGS:M-[ID]*} ${CPPFLAGS} \
     52  1.49     lukem 	    ${CPPFLAGS.${.IMPSRC:T}} ${__acpp_flags} ${AINC} ${.IMPSRC}
     53  1.39  christos 
     54  1.51     lukem .C.d .cc.d .cpp.d .cxx.d:
     55  1.60     lukem 	${_MKTARGET_CREATE}
     56  1.51     lukem 	${MKDEP} -f ${.TARGET} ${MKDEPFLAGS} ${CXXFLAGS:M-[ID]*} \
     57  1.47       mrg 	    ${DESTDIR:D-nostdinc++ ${CPPFLAG_ISYSTEMXX} \
     58  1.48     lukem 	    ${DESTDIR}/usr/include/g++} \
     59  1.49     lukem 	    ${CPPFLAGS} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC}
     60  1.39  christos 
     61  1.53     lukem .endif # defined(SRCS)							# }
     62  1.33        tv 
     63  1.33        tv ##### Clean rules
     64  1.19   mycroft cleandepend:
     65  1.33        tv .if defined(SRCS)
     66  1.55     lukem 	rm -f .depend ${__DPSRCS.d} ${.CURDIR}/tags ${CLEANDEPEND}
     67   1.3   mycroft .endif
     68   1.2   mycroft 
     69  1.33        tv ##### Custom rules
     70   1.2   mycroft .if !target(tags)
     71  1.33        tv tags: ${SRCS}
     72   1.4   mycroft .if defined(SRCS)
     73   1.2   mycroft 	-cd ${.CURDIR}; ctags -f /dev/stdout ${.ALLSRC:N*.h} | \
     74   1.2   mycroft 	    sed "s;\${.CURDIR}/;;" > tags
     75   1.4   mycroft .endif
     76   1.4   mycroft .endif
     77