diff options
author | Simon Richter <Simon.Richter@hogyros.de> | 2013-05-13 20:21:18 +0200 |
---|---|---|
committer | Zhigang Gong <zhigang.gong@linux.intel.com> | 2013-05-17 14:18:05 +0800 |
commit | 5be738dfbbb955faa8e785f91f7f32bf505d1f58 (patch) | |
tree | 61130cdb2cc3b8cf940b8af08b8b950e8b043aa9 | |
parent | eeebc11e3727a5c1663a2e83212ce8826b87ecdc (diff) |
Update gitignore files
- Ignore CMake built files
- Ignore .so files only in the subdirectory
- Ignore generated .bmp files
- Ignore generated config headers
- Ignore generated source for OCL
Reviewed-by: Zhigang Gong <zhigang.gong@linux.intel.com>
-rw-r--r-- | .gitignore | 5 | ||||
-rw-r--r-- | backend/src/.gitignore | 3 | ||||
-rw-r--r-- | src/.gitignore | 2 | ||||
-rw-r--r-- | utests/.gitignore | 13 |
4 files changed, 22 insertions, 1 deletions
@@ -1,2 +1,5 @@ *.o -*.so* +CMakeCache.txt +CMakeFiles/ +Makefile +cmake_install.cmake diff --git a/backend/src/.gitignore b/backend/src/.gitignore index afcb2833..39239f3a 100644 --- a/backend/src/.gitignore +++ b/backend/src/.gitignore @@ -1 +1,4 @@ +GBEConfig.h +libgbe.so +ocl_common_defines_str.cpp ocl_stdlib_str.cpp diff --git a/src/.gitignore b/src/.gitignore new file mode 100644 index 00000000..fc1479ec --- /dev/null +++ b/src/.gitignore @@ -0,0 +1,2 @@ +OCLConfig.h +libcl.so diff --git a/utests/.gitignore b/utests/.gitignore new file mode 100644 index 00000000..9a374dc4 --- /dev/null +++ b/utests/.gitignore @@ -0,0 +1,13 @@ +compiler_box_blur.bmp +compiler_box_blur_float.bmp +compiler_clod.bmp +compiler_julia.bmp +compiler_julia_no_break.bmp +compiler_mandelbrot.bmp +compiler_mandelbrot_alternate.bmp +compiler_menger_sponge_no_shadow.bmp +compiler_nautilus.bmp +compiler_ribbon.bmp +flat_address_space +libutests.so +utest_run |