From c4a14051eecb2dd9bca9443edc419145eddaa745 Mon Sep 17 00:00:00 2001 From: VladimirMangos Date: Mon, 20 Oct 2008 02:40:35 +0400 Subject: [PATCH] * Add some generated at MaNGOS build file ignore rules. Mostly Windows build related. --- .gitignore | 19 +++++++++++++++++++ dep/lib/win32_debug/.gitignore | 14 ++++++++++++++ dep/lib/win32_release/.gitignore | 14 ++++++++++++++ dep/lib/x64_Debug/.gitignore | 14 ++++++++++++++ dep/lib/x64_release/.gitignore | 14 ++++++++++++++ src/shared/.gitignore | 14 ++++++++++++++ win/.gitignore | 14 ++++++++++++++ win/VC71/.gitignore | 16 ++++++++++++++++ win/VC80/.gitignore | 16 ++++++++++++++++ win/VC90/.gitignore | 17 +++++++++++++++++ 10 files changed, 152 insertions(+) create mode 100644 dep/lib/win32_debug/.gitignore create mode 100644 dep/lib/win32_release/.gitignore create mode 100644 dep/lib/x64_Debug/.gitignore create mode 100644 dep/lib/x64_release/.gitignore create mode 100644 src/shared/.gitignore create mode 100644 win/.gitignore create mode 100644 win/VC71/.gitignore create mode 100644 win/VC80/.gitignore create mode 100644 win/VC90/.gitignore diff --git a/.gitignore b/.gitignore index 8f2736c48..3bb0872dd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,15 @@ +# +# NOTE! Don't add files that are generated in specific +# subdirectories here. Add them in the ".gitignore" file +# in that subdirectory instead. +# +# NOTE! Please use 'git-ls-files -i --exclude-standard' +# command after changing this file, to see if there are +# any tracked files which get ignored after the change. +# +# Normal rules +# + compile FILES INSTALL @@ -43,3 +55,10 @@ libtool stamp-h1 callgrind.out.* + +# +# +# MaNGOS generated files +# + +bin/* diff --git a/dep/lib/win32_debug/.gitignore b/dep/lib/win32_debug/.gitignore new file mode 100644 index 000000000..ae0b42bd7 --- /dev/null +++ b/dep/lib/win32_debug/.gitignore @@ -0,0 +1,14 @@ +# +# NOTE! Don't add files that are generated in specific +# subdirectories here. Add them in the ".gitignore" file +# in that subdirectory instead. +# +# NOTE! Please use 'git-ls-files -i --exclude-standard' +# command after changing this file, to see if there are +# any tracked files which get ignored after the change. +# +# MaNGOS generated files +# + +ACE* +ADE* diff --git a/dep/lib/win32_release/.gitignore b/dep/lib/win32_release/.gitignore new file mode 100644 index 000000000..ae0b42bd7 --- /dev/null +++ b/dep/lib/win32_release/.gitignore @@ -0,0 +1,14 @@ +# +# NOTE! Don't add files that are generated in specific +# subdirectories here. Add them in the ".gitignore" file +# in that subdirectory instead. +# +# NOTE! Please use 'git-ls-files -i --exclude-standard' +# command after changing this file, to see if there are +# any tracked files which get ignored after the change. +# +# MaNGOS generated files +# + +ACE* +ADE* diff --git a/dep/lib/x64_Debug/.gitignore b/dep/lib/x64_Debug/.gitignore new file mode 100644 index 000000000..ae0b42bd7 --- /dev/null +++ b/dep/lib/x64_Debug/.gitignore @@ -0,0 +1,14 @@ +# +# NOTE! Don't add files that are generated in specific +# subdirectories here. Add them in the ".gitignore" file +# in that subdirectory instead. +# +# NOTE! Please use 'git-ls-files -i --exclude-standard' +# command after changing this file, to see if there are +# any tracked files which get ignored after the change. +# +# MaNGOS generated files +# + +ACE* +ADE* diff --git a/dep/lib/x64_release/.gitignore b/dep/lib/x64_release/.gitignore new file mode 100644 index 000000000..ae0b42bd7 --- /dev/null +++ b/dep/lib/x64_release/.gitignore @@ -0,0 +1,14 @@ +# +# NOTE! Don't add files that are generated in specific +# subdirectories here. Add them in the ".gitignore" file +# in that subdirectory instead. +# +# NOTE! Please use 'git-ls-files -i --exclude-standard' +# command after changing this file, to see if there are +# any tracked files which get ignored after the change. +# +# MaNGOS generated files +# + +ACE* +ADE* diff --git a/src/shared/.gitignore b/src/shared/.gitignore new file mode 100644 index 000000000..be4376005 --- /dev/null +++ b/src/shared/.gitignore @@ -0,0 +1,14 @@ +# +# NOTE! Don't add files that are generated in specific +# subdirectories here. Add them in the ".gitignore" file +# in that subdirectory instead. +# +# NOTE! Please use 'git-ls-files -i --exclude-standard' +# command after changing this file, to see if there are +# any tracked files which get ignored after the change. +# +# MaNGOS generated files +# + +SystemConfig.h +svn_revision.h diff --git a/win/.gitignore b/win/.gitignore new file mode 100644 index 000000000..02fed215a --- /dev/null +++ b/win/.gitignore @@ -0,0 +1,14 @@ +# +# NOTE! Don't add files that are generated in specific +# subdirectories here. Add them in the ".gitignore" file +# in that subdirectory instead. +# +# NOTE! Please use 'git-ls-files -i --exclude-standard' +# command after changing this file, to see if there are +# any tracked files which get ignored after the change. +# +# MaNGOS generated files at Windows build +# + +*.ncb +*.suo diff --git a/win/VC71/.gitignore b/win/VC71/.gitignore new file mode 100644 index 000000000..c0bac5034 --- /dev/null +++ b/win/VC71/.gitignore @@ -0,0 +1,16 @@ +# +# NOTE! Don't add files that are generated in specific +# subdirectories here. Add them in the ".gitignore" file +# in that subdirectory instead. +# +# NOTE! Please use 'git-ls-files -i --exclude-standard' +# command after changing this file, to see if there are +# any tracked files which get ignored after the change. +# +# MaNGOS generated files at Windows build +# + +*__Win32_Debug* +*__x64_Debug* +*__Win32_Release* +*__x64_Release* diff --git a/win/VC80/.gitignore b/win/VC80/.gitignore new file mode 100644 index 000000000..c0bac5034 --- /dev/null +++ b/win/VC80/.gitignore @@ -0,0 +1,16 @@ +# +# NOTE! Don't add files that are generated in specific +# subdirectories here. Add them in the ".gitignore" file +# in that subdirectory instead. +# +# NOTE! Please use 'git-ls-files -i --exclude-standard' +# command after changing this file, to see if there are +# any tracked files which get ignored after the change. +# +# MaNGOS generated files at Windows build +# + +*__Win32_Debug* +*__x64_Debug* +*__Win32_Release* +*__x64_Release* diff --git a/win/VC90/.gitignore b/win/VC90/.gitignore new file mode 100644 index 000000000..9123b0a96 --- /dev/null +++ b/win/VC90/.gitignore @@ -0,0 +1,17 @@ +# +# NOTE! Don't add files that are generated in specific +# subdirectories here. Add them in the ".gitignore" file +# in that subdirectory instead. +# +# NOTE! Please use 'git-ls-files -i --exclude-standard' +# command after changing this file, to see if there are +# any tracked files which get ignored after the change. +# +# MaNGOS generated files at Windows build +# + +*__Win32_Debug* +*__x64_Debug* +*__Win32_Release* +*__x64_Release* +*.user \ No newline at end of file