From 0e972c624ebee84a882ffbae035166fec5bcecc5 Mon Sep 17 00:00:00 2001 From: "torne@chromium.org" Date: Wed, 29 Aug 2012 16:31:21 +0000 Subject: Make gitignore for *.mk more specific. Instead of ignoring *.mk, only ignore *.host.mk and *.target.mk, which is what the gyp-generated makefiles are actually called. The android port has a number of files called things like Android.mk which are hand-written, not autogenerated, and ignoring them causes them to be left out of commits by mistake sometimes. BUG= Review URL: https://chromiumcodereview.appspot.com/10882030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153897 0039d316-1c4b-4281-b951-d872f2087c98 --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 0f14a50..3c468c4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ *.Makefile *.gypcmd -*.mk +*.host.mk *.ncb *.ninja *.opensdf @@ -11,6 +11,7 @@ *.sdf *.sln *.suo +*.target.mk *.targets *.user *.vcproj -- cgit v1.1