1 1.58 lukem # $NetBSD: bsd.dep.mk,v 1.58 2003/10/18 15:33:59 lukem 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.35 thorpej __acpp_flags= -traditional-cpp 19 1.48 lukem 20 1.55 lukem __DPSRCS.all= ${SRCS:C/\.(c|m|s|S|C|cc|cpp|cxx)$/.d/} \ 21 1.55 lukem ${DPSRCS:C/\.(c|m|s|S|C|cc|cpp|cxx)$/.d/} 22 1.55 lukem __DPSRCS.d= ${__DPSRCS.all:O:u:M*.d} 23 1.55 lukem __DPSRCS.notd= ${__DPSRCS.all:O:u:N*.d} 24 1.48 lukem 25 1.55 lukem .NOPATH: .depend ${__DPSRCS.d} 26 1.53 lukem 27 1.56 martin .if !empty(__DPSRCS.d) # { 28 1.55 lukem ${__DPSRCS.d}: ${__DPSRCS.notd} ${DPSRCS} 29 1.56 martin .endif # } 30 1.55 lukem 31 1.55 lukem .depend: ${__DPSRCS.d} 32 1.58 lukem ${_MKMSG} " create ${.TARGET}" 33 1.58 lukem ${_MKCMD}\ 34 1.58 lukem rm -f .depend 35 1.58 lukem ${_MKCMD}\ 36 1.56 martin cat ${__DPSRCS.d} /dev/null > .depend 37 1.39 christos 38 1.57 lukem .SUFFIXES: .d .s .S .c .C .cc .cpp .cxx .m 39 1.49 lukem 40 1.51 lukem .c.d: 41 1.58 lukem ${_MKMSG} " create ${.TARGET}" 42 1.58 lukem ${_MKCMD}\ 43 1.51 lukem ${MKDEP} -f ${.TARGET} ${MKDEPFLAGS} ${CFLAGS:M-[ID]*} ${CPPFLAGS} \ 44 1.49 lukem ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} 45 1.39 christos 46 1.51 lukem .m.d: 47 1.58 lukem ${_MKMSG} " create ${.TARGET}" 48 1.58 lukem ${_MKCMD}\ 49 1.51 lukem ${MKDEP} -f ${.TARGET} ${MKDEPFLAGS} ${OBJCFLAGS:M-[ID]*} \ 50 1.49 lukem ${CPPFLAGS} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} 51 1.39 christos 52 1.51 lukem .s.d .S.d: 53 1.58 lukem ${_MKMSG} " create ${.TARGET}" 54 1.58 lukem ${_MKCMD}\ 55 1.51 lukem ${MKDEP} -f ${.TARGET} ${MKDEPFLAGS} ${AFLAGS:M-[ID]*} ${CPPFLAGS} \ 56 1.49 lukem ${CPPFLAGS.${.IMPSRC:T}} ${__acpp_flags} ${AINC} ${.IMPSRC} 57 1.39 christos 58 1.51 lukem .C.d .cc.d .cpp.d .cxx.d: 59 1.58 lukem ${_MKMSG} " create ${.TARGET}" 60 1.58 lukem ${_MKCMD}\ 61 1.51 lukem ${MKDEP} -f ${.TARGET} ${MKDEPFLAGS} ${CXXFLAGS:M-[ID]*} \ 62 1.47 mrg ${DESTDIR:D-nostdinc++ ${CPPFLAG_ISYSTEMXX} \ 63 1.48 lukem ${DESTDIR}/usr/include/g++} \ 64 1.49 lukem ${CPPFLAGS} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} 65 1.39 christos 66 1.53 lukem .endif # defined(SRCS) # } 67 1.33 tv 68 1.33 tv ##### Clean rules 69 1.19 mycroft cleandepend: 70 1.33 tv .if defined(SRCS) 71 1.58 lukem ${_MKCMD}\ 72 1.55 lukem rm -f .depend ${__DPSRCS.d} ${.CURDIR}/tags ${CLEANDEPEND} 73 1.3 mycroft .endif 74 1.2 mycroft 75 1.33 tv ##### Custom rules 76 1.2 mycroft .if !target(tags) 77 1.33 tv tags: ${SRCS} 78 1.4 mycroft .if defined(SRCS) 79 1.58 lukem ${_MKCMD}\ 80 1.2 mycroft -cd ${.CURDIR}; ctags -f /dev/stdout ${.ALLSRC:N*.h} | \ 81 1.2 mycroft sed "s;\${.CURDIR}/;;" > tags 82 1.4 mycroft .endif 83 1.4 mycroft .endif 84