summaryrefslogtreecommitdiff
path: root/bootstrap/bmake/mk/bsd.dep.mk
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap/bmake/mk/bsd.dep.mk')
-rw-r--r--bootstrap/bmake/mk/bsd.dep.mk62
1 files changed, 0 insertions, 62 deletions
diff --git a/bootstrap/bmake/mk/bsd.dep.mk b/bootstrap/bmake/mk/bsd.dep.mk
deleted file mode 100644
index ec1d5caad44..00000000000
--- a/bootstrap/bmake/mk/bsd.dep.mk
+++ /dev/null
@@ -1,62 +0,0 @@
-# $NetBSD: bsd.dep.mk,v 1.1.1.1 2004/03/11 13:04:17 grant Exp $
-
-.PHONY: cleandepend
-cleandir: cleandepend
-
-MKDEP?= mkdep
-
-# some of the rules involve .h sources, so remove them from mkdep line
-realdepend: beforedepend
-.if defined(SRCS)
-realdepend: .depend
-.NOPATH: .depend
-.depend: ${SRCS} ${DPSRCS}
- @rm -f .depend
- @files="${.ALLSRC:M*.s} ${.ALLSRC:M*.S}"; \
- if [ "$$files" != " " ]; then \
- echo ${MKDEP} -a ${MKDEPFLAGS} \
- ${AFLAGS:M-[ID]*:Q} ${CPPFLAGS:Q} -traditional-cpp ${AINC:Q} \
- $$files; \
- ${MKDEP} -a ${MKDEPFLAGS} \
- ${AFLAGS:M-[ID]*} ${CPPFLAGS} -traditional-cpp ${AINC} $$files; \
- fi
- @files="${.ALLSRC:M*.c}"; \
- if [ "$$files" != "" ]; then \
- echo ${MKDEP} -a ${MKDEPFLAGS} \
- ${CFLAGS:M-[ID]*:Q} ${CPPFLAGS:Q} $$files; \
- ${MKDEP} -a ${MKDEPFLAGS} \
- ${CFLAGS:M-[ID]*} ${CPPFLAGS} $$files; \
- fi
- @files="${.ALLSRC:M*.m}"; \
- if [ "$$files" != "" ]; then \
- echo ${MKDEP} -a ${MKDEPFLAGS} \
- ${OBJCFLAGS:M-[ID]*:Q} ${CPPFLAGS:Q} $$files; \
- ${MKDEP} -a ${MKDEPFLAGS} \
- ${OBJCFLAGS:M-[ID]*} ${CPPFLAGS} $$files; \
- fi
- @files="${.ALLSRC:M*.cc} ${.ALLSRC:M*.C} ${.ALLSRC:M*.cxx}"; \
- if [ "$$files" != " " ]; then \
- echo ${MKDEP} -a ${MKDEPFLAGS} \
- ${CXXFLAGS:M-[ID]*:Q} ${CPPFLAGS:Q} $$files; \
- ${MKDEP} -a ${MKDEPFLAGS} \
- ${CXXFLAGS:M-[ID]*} ${CPPFLAGS} $$files; \
- fi
-cleandepend:
- rm -f .depend ${.CURDIR}/tags ${CLEANDEPEND}
-.else
-cleandepend:
-.endif
-realdepend: afterdepend
-
-beforedepend:
-afterdepend:
-
-.if !target(tags)
-.if defined(SRCS)
-tags: ${SRCS}
- -cd ${.CURDIR}; ctags -f /dev/stdout ${.ALLSRC:N*.h} | \
- sed "s;\${.CURDIR}/;;" > tags
-.else
-tags:
-.endif
-.endif