Index: .gitignore |
diff --git a/.gitignore b/.gitignore |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e0268f1335fbcc5827444bd1fe8771a3bd8a6642 |
--- /dev/null |
+++ b/.gitignore |
@@ -0,0 +1,31 @@ |
+#==============================================================================# |
+# Inspired by LLVM's .gitignore |
+#==============================================================================# |
JF
2014/03/21 02:11:30
I'm not sure you really need this.
Jim Stichnoth
2014/03/21 21:33:08
Done.
|
+ |
+#==============================================================================# |
+# File extensions to be ignored anywhere in the tree. |
+#==============================================================================# |
+# Temp files created by most text editors. |
+*~ |
+# Merge files created by git. |
+*.orig |
+# Byte compiled python modules. |
+*.pyc |
+# vim swap files |
+.*.swp |
+.sw? |
+*.o |
+ |
+#==============================================================================# |
+# Explicit files to ignore (only matches one). |
+#==============================================================================# |
+.gitusers |
+autom4te.cache |
+cscope.files |
+cscope.out |
+autoconf/aclocal.m4 |
+autoconf/autom4te.cache |
+compile_commands.json |
+tags |
+llvm2ice |
JF
2014/03/21 02:11:30
This builds in-tree?
Jim Stichnoth
2014/03/21 21:33:08
For now, yes. The real version will abandon the l
|
+build/ |