1#
2# Copyright (c) 2001-2007 Hypertriton, Inc. <http://hypertriton.com/>
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions
7# are met:
8# 1. Redistributions of source code must retain the above copyright
9#    notice, this list of conditions and the following disclaimer.
10# 2. Redistributions in binary form must reproduce the above copyright
11#    notice, this list of conditions and the following disclaimer in the
12#    documentation and/or other materials provided with the distribution.
13#
14# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
15# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
18# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19# DAMAGES (INCLUDING BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
20# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
21# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
22# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
23# USE OF THIS SOFTWARE EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
25#
26# Get object file dependency information from the compiler.
27#
28
29MKDEP=	sh ${TOP}/mk/mkdep
30CC?=	cc
31
32depend:	${DPADD} depend-subdir
33	@echo > .depend
34	@files="${SRCS}"; \
35	if [ "$$files" != "" -a "$$files" != "none" ]; then \
36	    if [ "${BUILD}" != "" ]; then \
37	   	env CC=${CC} ${MKDEP} ${CFLAGS} -I${BUILD} $$files; \
38	   	env CC=${CC} ${MKDEP} -a -l ${CFLAGS} -I${BUILD} $$files; \
39	    else \
40	   	env CC=${CC} ${MKDEP} ${CFLAGS} $$files; \
41	   	env CC=${CC} ${MKDEP} -a -l ${CFLAGS} $$files; \
42	    fi; \
43	fi
44
45clean-depend:
46	echo > .depend
47
48