OILS / .gitignore View on Github | oilshell.org

59 lines, 49 significant
1# Vim
2*.swp
3
4# Emacs temp files
5*~
6
7# Python
8*.pyc
9__pycache__
10.mypy_cache/
11# Python build support
12build/temp.*
13
14# R
15.RData
16.Rhistory
17Rplots.pdf
18
19# Ninja
20build.ninja
21.ninja_*
22
23# GDB
24.gdbinit
25
26tags
27.vagrant
28
29# Our own temp dirs
30_bin/
31_build/
32_chroot/
33_devbuild/
34_gen
35_release/
36_soil-jobs/
37_test/
38_tmp/
39!opy/_regtest/src/_devbuild/
40
41# TODO: should get rid of these in favor of wedges
42_cache/
43_deps/
44
45# Our Python extensions. We need these at the top level to statically link
46# "import libc" in the "OVM tarball".
47fanos.so
48fastfunc.so
49fastlex.so
50libc.so
51line_input.so
52posix_.so
53yajl.so
54
55# my own stuff
56local.sh
57NOTES*.txt
58TODO*.txt
59Z.txt