2008-10-20 17:39:14 +05:30
|
|
|
# Generate .depend
|
2015-12-05 04:22:19 +05:30
|
|
|
# Copyright (c) 2008-2015 The OpenRC Authors.
|
|
|
|
# See the Authors file at the top-level directory of this distribution and
|
|
|
|
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
|
|
|
#
|
|
|
|
# This file is part of OpenRC. It is subject to the license terms in
|
|
|
|
# the LICENSE file found in the top-level directory of this
|
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
|
|
|
# This file may not be copied, modified, propagated, or distributed
|
|
|
|
# except according to the terms contained in the LICENSE file.
|
2008-01-07 19:50:13 +05:30
|
|
|
|
2008-01-09 17:14:43 +05:30
|
|
|
CLEANFILES+= .depend
|
2008-03-03 18:34:08 +05:30
|
|
|
IGNOREFILES+= .depend
|
2008-01-09 17:14:43 +05:30
|
|
|
|
|
|
|
.depend: ${SRCS}
|
2009-04-24 14:03:11 +05:30
|
|
|
rm -f .depend
|
2015-01-22 20:13:28 +05:30
|
|
|
${CC} ${LOCAL_CPPFLAGS} ${CPPFLAGS} -MM ${SRCS} > .depend
|
2008-01-07 19:50:13 +05:30
|
|
|
|
2008-10-20 17:39:14 +05:30
|
|
|
depend: .depend extra_depend
|
|
|
|
|
2011-02-03 04:12:17 +05:30
|
|
|
-include .depend
|