xref: /libCEED/.gitignore (revision ebfb1ab346d5a1addc1221edc1d1c7f1a6380df6)
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# Output files, videos, and compressed archives should not be added accidentally
55*.avi
56*.bin
57*.bin.info
58*.bz2
59*.cgns
60*.gif
61*.gz
62*.mkv
63*.mp4
64*.msh
65*.ogv
66*.pbin
67*.vtu
68*.webm
69*.xmf
70*.xz
71*.zstd
72perf.data
73*.log
74*.npy
75
76# Editor Misc
77.cache/
78.history
79.vscode
80.ccls-cache
81.vim
82libCEED.cflags
83libCEED.config
84libCEED.creator
85libCEED.creator.*
86libCEED.cxxflags
87libCEED.files
88libCEED.includes
89
90# latex output files
91.auctex-auto/
92*.aux
93*.fdb_latexmk
94*.fls
95
96# profiling files
97*.txt
98*.proto
99*.csv
100
101.venv
102