# $Id: dontincdep.mk 1168 2019-06-20 11:52:51Z mueller $ # SPDX-License-Identifier: GPL-3.0-or-later # Copyright 2013- by Walter F.J. Mueller # # Revision History: # Date Rev Version Comment # 2013-01-27 477 1.0 Initial version # # DONTINCDEP controls whether dependency files are included. Set it if # any of the 'clean' type targets is involved # ifneq ($(findstring clean, $(MAKECMDGOALS)),) DONTINCDEP = 1 endif ifneq ($(findstring cleandep, $(MAKECMDGOALS)),) DONTINCDEP = 1 endif ifneq ($(findstring distclean, $(MAKECMDGOALS)),) DONTINCDEP = 1 endif ifdef DONTINCDEP $(info DONTINCDEP set, *.dep files not included) endif