xref: /libCEED/.gitignore (revision 9b9f6113f51e15913d7f93f3cfe1286cbb8f166e)
1# Build Dir
2build/*
3
4# Library Dir
5lib/*
6
7# General
8*.o
9*.so
10*.so.*
11*.d
12*.DIR
13ceed.pc
14config.mk
15.prove
16
17# Mac specific
18.DS_Store
19*.dSYM
20*~
21*.dylib
22
23# Coverage
24*.gcno
25*.gcda
26*.gcov
27
28# Debugging
29vgcore*
30*.json
31tests/test_dir
32
33# Python
34dist
35*egg*
36.pytest_cache
37*cffi.so
38*cffi.dylib
39__pycache__/
40.ipynb_checkpoints/
41
42# Rust
43/target/
44Cargo.lock
45rust.lcov
46
47# Documentation
48xml/*
49doc/html
50doc/sphinx/build/
51# Example docs automatically copied from source tree
52doc/sphinx/source/examples/
53
54# Clang GPU temp files
55temp/*
56
57# Output files, videos, and compressed archives should not be added accidentally
58*.avi
59*.bin
60*.bin.info
61*.bz2
62*.cgns
63*.gif
64*.gz
65*.mkv
66*.mp4
67*.msh
68*.ogv
69*.pbin
70*.vtu
71*.webm
72*.xmf
73*.xz
74*.zstd
75perf.data
76*.log
77*.npy
78
79# Editor Misc
80.cache/
81.history
82.vscode
83.ccls-cache
84.vim
85libCEED.cflags
86libCEED.config
87libCEED.creator
88libCEED.creator.*
89libCEED.cxxflags
90libCEED.files
91libCEED.includes
92
93# latex output files
94.auctex-auto/
95*.aux
96*.fdb_latexmk
97*.fls
98
99# profiling files
100*.txt
101*.proto
102*.csv
103
104.venv
105