cdaec7b1a1
`depend' wasn't supported. This seems to have only broken `make depend' in gnu/usr.bin/ld. bsd.prog.mk: Build the man pages in ${MANDEPEND} at build time.
48 lines
1.0 KiB
Makefile
48 lines
1.0 KiB
Makefile
# $Id: bsd.dep.mk,v 1.1 1994/08/04 21:10:07 wollman Exp $
|
|
|
|
# some of the rules involve .h sources, so remove them from mkdep line
|
|
.if !target(depend)
|
|
depend: beforedepend .depend afterdepend ${_DEPSUBDIR}
|
|
.if defined(SRCS)
|
|
.depend: ${SRCS}
|
|
rm -f .depend
|
|
files="${.ALLSRC:M*.[sS]}"; \
|
|
if [ "$$files" != "" ]; then \
|
|
mkdep -a ${MKDEP} ${CFLAGS:M-[ID]*} ${AINC} $$files; \
|
|
fi
|
|
files="${.ALLSRC:M*.c}"; \
|
|
if [ "$$files" != "" ]; then \
|
|
mkdep -a ${MKDEP} ${CFLAGS:M-[ID]*} $$files; \
|
|
fi
|
|
files="${.ALLSRC:M*.cc} ${.ALLSRC:M*.C} ${.ALLSRC:M*.cxx}"; \
|
|
if [ "$$files" != " " ]; then \
|
|
mkdep -a ${MKDEP} ${CXXFLAGS:M-nostd*} ${CXXFLAGS:M-[ID]*} $$files; \
|
|
fi
|
|
.else
|
|
.depend: ${_DEPSUBDIR}
|
|
.endif
|
|
.if !target(beforedepend)
|
|
beforedepend:
|
|
.endif
|
|
.if !target(afterdepend)
|
|
afterdepend:
|
|
.endif
|
|
.endif
|
|
|
|
.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
|
|
|
|
.if defined(SRCS)
|
|
clean:
|
|
cleandir: cleandepend
|
|
cleandepend:
|
|
rm -f .depend ${.CURDIR}/tags
|
|
.endif
|