Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Unity-Technologies/libatomic_ops.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2011-08-03 14:20:55 +0400
committerIvan Maidanski <ivmai@mail.ru>2011-08-03 14:20:55 +0400
commitb8cd1c00ac220c7c9b8d5c583febf849d301439d (patch)
treebb44337306c8c5b42f75fdd9cc723c976b40f89f
parentdf2d8771fff2a5a531c2a6858bddfea415bd3368 (diff)
Add project-wide .gitignore file
-rw-r--r--.gitignore29
-rw-r--r--TODO4
2 files changed, 29 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..cd64647
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,29 @@
+# Ignored files in libatomic_ops Git repo.
+# Note: the list should be kept in sync with .cvsignore files for now.
+
+Makefile
+
+/autom4te.cache/
+/config.log
+/config.status
+/libatomic_ops-*
+
+/src/*.a
+/src/*.exe
+/src/*.lib
+/src/*.o
+/src/*.obj
+/src/.deps/
+/src/config.h
+/src/config.h.in~
+/src/stamp-h1
+
+/tests/*.exe
+/tests/*.o
+/tests/*.obj
+/tests/.deps/
+/tests/list_atomic.i
+/tests/test_atomic
+/tests/test_atomic_pthreads
+/tests/test_malloc
+/tests/test_stack
diff --git a/TODO b/TODO
index db7c929..d1bdaaa 100644
--- a/TODO
+++ b/TODO
@@ -1,10 +1,6 @@
TODO tasks
==========
-Add .gitignore while keeping .cvsignore for compatibility (adjust build
-scripts if needed). I think there should be only one .gitignore file (in the
-root).
-
Add .gitattribute file. Set crlf property. I think we should consistently
use LF across the project (including Makefile.msft) and checkout files as-is.