From: divverent Date: Sun, 4 Dec 2011 17:20:59 +0000 (+0000) Subject: makefile: if a .h file in dependency file is missing (cl_gecko.h), ignore the error... X-Git-Tag: xonotic-v0.6.0~102^2~22 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=d694563ab3206f9ef3c89d275cc75f7de45034b8;p=xonotic%2Fdarkplaces.git makefile: if a .h file in dependency file is missing (cl_gecko.h), ignore the error and continue anyway git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11597 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/makefile.inc b/makefile.inc index 409cd2ec..4bc6f514 100644 --- a/makefile.inc +++ b/makefile.inc @@ -587,3 +587,9 @@ clean-profile: clean -$(CMD_RM) *.gcda -$(CMD_RM) *.gcno +# hack to deal with no-longer-needed .h files +%.h: + @echo + @echo "NOTE: file $@ mentioned in dependencies missing, continuing..." + @echo "HINT: consider 'make clean'" + @echo