1 # $FreeBSD: src/share/mk/bsd.dep.mk,v 1.27.2.3 2002/12/23 16:33:37 ru Exp $
2 # $DragonFly: src/share/mk/bsd.dep.mk,v 1.9 2006/02/13 13:27:20 corecode Exp $
4 # The include file <bsd.dep.mk> handles Makefile dependencies.
9 # CTAGS A tags file generation program [gtags]
11 # CTAGSFLAGS Options for ctags(1) [not set]
13 # DEPENDFILE dependencies file [.depend]
15 # GTAGSFLAGS Options for gtags(1) [-o]
17 # HTAGSFLAGS Options for htags(1) [not set]
19 # MKDEP Options for ${MKDEPCMD} [not set]
21 # MKDEPCMD Makefile dependency list program [mkdep]
23 # SRCS List of source files (c, c++, assembler)
29 # Remove depend and tags file
32 # Make the dependencies for the source files, and store
33 # them in the file ${DEPENDFILE}.
36 # In "ctags" mode, create a tags file for the source files.
37 # In "gtags" mode, create a (GLOBAL) gtags file for the
38 # source files. If HTML is defined, htags(1) is also run
41 .if
!target
(__
<bsd.init.mk
>__
)
42 .error bsd.dep.mk cannot be included directly.
53 # Keep `tags' here, before SRCS are mangled below for `depend'.
54 .if
!target
(tags) && defined
(SRCS
) && !defined
(NOTAGS
)
56 .if
${CTAGS
:T
} == "ctags"
57 @
${CTAGS} ${CTAGSFLAGS} -f
/dev
/stdout \
58 ${.ALLSRC
:N
*.h
} | sed
"s;${.CURDIR}/;;" > ${.TARGET
}
59 .elif
${CTAGS
:T
} == "gtags"
60 @cd
${.CURDIR
} && ${CTAGS} ${GTAGSFLAGS} ${.OBJDIR
}
62 @cd
${.CURDIR
} && htags
${HTAGSFLAGS} -d
${.OBJDIR
} ${.OBJDIR
}
70 .for _LSRC in
${SRCS
:M
*.l
:N
*/*}
71 .for _LC in
${_LSRC
:S
/.l
/.c
/}
73 ${LEX} -t
${LFLAGS} ${.ALLSRC
} > ${.TARGET
}
74 SRCS
:= ${SRCS
:S
/${_LSRC}/${_LC}/}
75 CLEANFILES
:= ${CLEANFILES} ${_LC}
79 .for _YSRC in
${SRCS
:M
*.y
:N
*/*}
80 .for _YC in
${_YSRC
:S
/.y
/.c
/}
81 SRCS
:= ${SRCS
:S
/${_YSRC}/${_YC}/}
82 CLEANFILES
:= ${CLEANFILES} ${_YC}
83 .if
!empty
(YFLAGS
:M-d
) && !empty
(SRCS
:My.tab.h
)
84 .ORDER
: ${_YC} y.tab.h
85 ${_YC} y.tab.h
: ${_YSRC}
86 ${YACC} ${YFLAGS} ${.ALLSRC
}
88 SRCS
:= ${SRCS} y.tab.h
89 CLEANFILES
:= ${CLEANFILES} y.tab.c y.tab.h
90 .elif
!empty
(YFLAGS
:M-d
)
91 .for _YH in
${_YC
:S
/.c
/.h
/}
93 ${_YC} ${_YH}: ${_YSRC}
94 ${YACC} ${YFLAGS} -o
${_YC} ${.ALLSRC
}
96 CLEANFILES
:= ${CLEANFILES} ${_YH}
100 ${YACC} ${YFLAGS} -o
${_YC} ${.ALLSRC
}
108 depend
: beforedepend
${DEPENDFILE} afterdepend
110 # Different types of sources are compiled with slightly different flags.
111 # Split up the sources, and filter out headers and non-applicable flags.
112 ${DEPENDFILE}: ${SRCS}
114 .if
${SRCS
:M
*.
[sS
]} != ""
115 ${MKDEPCMD} -f
${DEPENDFILE} -a
${MKDEP} \
116 ${CFLAGS
:M-nostdinc
*} ${CFLAGS
:M-
[BID
]*} \
120 .if
${SRCS
:M
*.c
} != ""
121 ${MKDEPCMD} -f
${DEPENDFILE} -a
${MKDEP} \
122 ${CFLAGS
:M-nostdinc
*} ${CFLAGS
:M-
[BID
]*} \
125 .if
${SRCS
:M
*.
cc} != "" ||
${SRCS
:M
*.C
} != "" ||
${SRCS
:M
*.
cpp} != "" || \
127 ${MKDEPCMD} -f
${DEPENDFILE} -a
${MKDEP} \
128 ${CXXFLAGS
:M-nostdinc
*} ${CXXFLAGS
:M-
[BID
]*} \
129 ${.ALLSRC
:M
*.
cc} ${.ALLSRC
:M
*.C
} ${.ALLSRC
:M
*.
cpp} ${.ALLSRC
:M
*.
cxx}
131 .if
${SRCS
:M
*.m
} != ""
132 ${MKDEPCMD} -f
${DEPENDFILE} -a
${MKDEP} \
133 ${OBJCFLAGS
:M-nostdinc
*} ${OBJCFLAGS
:M-
[BID
]*} \
134 ${OBJCFLAGS
:M-Wno-import
*} \
137 .if target
(_EXTRADEPEND
)
139 ${DEPENDFILE}: _EXTRADEPEND
142 .ORDER
: ${DEPENDFILE} afterdepend
144 depend
: beforedepend afterdepend
146 .if
!target
(beforedepend
)
149 .ORDER
: beforedepend
${DEPENDFILE}
150 .ORDER
: beforedepend afterdepend
152 .if
!target
(afterdepend
)
157 .if
!target
(cleandepend
)
160 .if
${CTAGS
:T
} == "ctags"
161 rm -f
${DEPENDFILE} tags
162 .elif
${CTAGS
:T
} == "gtags"
163 rm -f
${DEPENDFILE} GPATH GRTAGS GSYMS GTAGS
171 .if
!target
(checkdpadd
) && (defined
(DPADD
) || defined
(LDADD
))
173 .if
${OBJFORMAT} != aout
174 @ldadd
=`echo \`for lib in
${DPADD} ; do \
175 echo
$$lib | sed
's;^/usr/lib/lib\(.*\)\.a;-l\1;' ; \
177 ldadd1
=`echo ${LDADD}` ; \
178 if
[ "$$ldadd" != "$$ldadd1" ] ; then \
180 echo
"DPADD -> $$ldadd" ; \
181 echo
"LDADD -> $$ldadd1" ; \
184 @dpadd
=`echo \`ld -Bstatic
-f
${LDADD}\
`` ; \
185 if
[ "$$dpadd" != "${DPADD}" ] ; then \
187 echo
"LDADD -> $$dpadd" ; \
188 echo
"DPADD = ${DPADD}" ; \