From ecf7e8dc977e5b04db694a9414fd5eb94900c356 Mon Sep 17 00:00:00 2001 From: Reece H. Dunn Date: Thu, 24 Jan 2008 09:05:16 +0000 Subject: [PATCH] gitignore: ignore files generated by the Visual C++ compiler. --- .gitignore | 5 +++++ tools/make_makefiles | 5 +++++ 2 files changed, 10 insertions(+), 0 deletions(-) diff --git a/.gitignore b/.gitignore index d1b2f57..2488235 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,10 @@ # Automatically generated by make_makefiles; DO NOT EDIT!! +*.RES *.[oa] +*.exe +*.ilk +*.obj +*.pdb *.so /Make.rules /TAGS diff --git a/tools/make_makefiles b/tools/make_makefiles index c988d74..bc73f59 100755 --- a/tools/make_makefiles +++ b/tools/make_makefiles @@ -70,6 +70,11 @@ my %special_dlls = my @ignores = ( "*.[oa]", "*.so", + "*.obj", + "*.exe", + "*.ilk", + "*.pdb", + "*.RES", "/autom4te.cache", "/config.cache", "/config.log", -- 1.5.3.5