-
Notifications
You must be signed in to change notification settings - Fork 11
/
.gitignore
101 lines (92 loc) · 1.14 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# Files found in several places
*~
Makefile
Makefile.in
*.a
*.o
*.lo
*.la
*.dylib
*.so
*.swp
# /
/*.log
/config.status
/config.guess
/config.sub
/config.h
/stamp-h1
/aclocal.m4
/autom4te.cache
/autogen*
/.deps
/*.bak
/configure
/config.h.in
/build-aux
/test.x_debug
/depcomp
/compile
/missing
/install-sh
/ltmain.sh
/libtool
/xc_version.h
/test-driver
/bin
/include
/lib
# /build/
/build
/objdir
/pkgconfig/*.pc
# /m4/
/m4/ltsugar.m4
/m4/libtool.m4
/m4/lt~obsolete.m4
/m4/ltoptions.m4
/m4/ltversion.m4
# /src/
/src/.deps
/src/*.mod
/src/xc_set_params.h
/src/.libs
/src/xc-info
/src/genwiki
/src/libxc_inc.f03
/src/xc-threshold
/src/libxc_docs.txt
/src/xc-sanity
# /testsuite/
/testsuite/.deps
/testsuite/xc-get_data
/testsuite/xc-consistency
/testsuite/xc-regression
/testsuite/xc-error
/testsuite/xc-auto
/testsuite/.libs
/testsuite/test-suite.log
/testsuite/xc-run_testsuite.log
/testsuite/xc-run_testsuite.trs
# Python
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
# Distribution / packaging
.Python
env/
build/temp.*
develop-eggs/
dist/
downloads/
eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
.coverage
.cache/