1 1.23 tv # $NetBSD: bsd.dep.mk,v 1.23 1998/08/18 19:12:42 tv Exp $ 2 1.13 gwr 3 1.15 mycroft .PHONY: cleandepend 4 1.21 lukem cleandir distclean: cleandepend 5 1.14 mycroft 6 1.14 mycroft MKDEP?= mkdep 7 1.1 mycroft 8 1.1 mycroft # some of the rules involve .h sources, so remove them from mkdep line 9 1.16 mycroft depend: beforedepend 10 1.1 mycroft .if defined(SRCS) 11 1.16 mycroft depend: .depend 12 1.18 gwr .NOPATH: .depend 13 1.20 mycroft .depend: ${SRCS} ${DPSRCS} 14 1.12 christos @rm -f .depend 15 1.12 christos @files="${.ALLSRC:M*.s} ${.ALLSRC:M*.S}"; \ 16 1.6 cgd if [ "$$files" != " " ]; then \ 17 1.13 gwr echo ${MKDEP} -a ${MKDEPFLAGS} \ 18 1.13 gwr ${CFLAGS:M-[ID]*} ${CPPFLAGS} ${AINC} $$files; \ 19 1.13 gwr ${MKDEP} -a ${MKDEPFLAGS} \ 20 1.13 gwr ${CFLAGS:M-[ID]*} ${CPPFLAGS} ${AINC} $$files; \ 21 1.5 mycroft fi 22 1.12 christos @files="${.ALLSRC:M*.c}"; \ 23 1.1 mycroft if [ "$$files" != "" ]; then \ 24 1.13 gwr echo ${MKDEP} -a ${MKDEPFLAGS} \ 25 1.13 gwr ${CFLAGS:M-[ID]*} ${CPPFLAGS} $$files; \ 26 1.13 gwr ${MKDEP} -a ${MKDEPFLAGS} \ 27 1.13 gwr ${CFLAGS:M-[ID]*} ${CPPFLAGS} $$files; \ 28 1.22 tv fi 29 1.22 tv @files="${.ALLSRC:M*.m}"; \ 30 1.23 tv if [ "$$files" != "" ]; then \ 31 1.22 tv echo ${MKDEP} -a ${MKDEPFLAGS} \ 32 1.22 tv ${OBJCFLAGS:M-[ID]*} ${CPPFLAGS} $$files; \ 33 1.22 tv ${MKDEP} -a ${MKDEPFLAGS} \ 34 1.22 tv ${OBJCFLAGS:M-[ID]*} ${CPPFLAGS} $$files; \ 35 1.1 mycroft fi 36 1.12 christos @files="${.ALLSRC:M*.cc} ${.ALLSRC:M*.C} ${.ALLSRC:M*.cxx}"; \ 37 1.1 mycroft if [ "$$files" != " " ]; then \ 38 1.13 gwr echo ${MKDEP} -a ${MKDEPFLAGS} \ 39 1.13 gwr ${CXXFLAGS:M-[ID]*} ${CPPFLAGS} $$files; \ 40 1.13 gwr ${MKDEP} -a ${MKDEPFLAGS} \ 41 1.13 gwr ${CXXFLAGS:M-[ID]*} ${CPPFLAGS} $$files; \ 42 1.1 mycroft fi 43 1.19 mycroft cleandepend: 44 1.19 mycroft rm -f .depend ${.CURDIR}/tags 45 1.19 mycroft .else 46 1.19 mycroft cleandepend: 47 1.3 mycroft .endif 48 1.17 mycroft depend: afterdepend 49 1.19 mycroft 50 1.3 mycroft beforedepend: 51 1.3 mycroft afterdepend: 52 1.2 mycroft 53 1.2 mycroft .if !target(tags) 54 1.4 mycroft .if defined(SRCS) 55 1.17 mycroft tags: ${SRCS} 56 1.2 mycroft -cd ${.CURDIR}; ctags -f /dev/stdout ${.ALLSRC:N*.h} | \ 57 1.2 mycroft sed "s;\${.CURDIR}/;;" > tags 58 1.4 mycroft .else 59 1.4 mycroft tags: 60 1.4 mycroft .endif 61 1.4 mycroft .endif 62