.gitignore 1.3 KB
Newer Older
1
2
3
*.tar.gz

*.exe
4
5
src/bitcoin
src/bitcoind
6
src/bitcoin-cli
7
src/bitcoin-tx
8
9
10
src/test/test_bitcoin
src/qt/test/test_bitcoin-qt

11
# autoreconf
12
13
14
Makefile.in
aclocal.m4
autom4te.cache/
15
16
17
18
19
20
21
22
23
24
25
26
27
build-aux/config.guess
build-aux/config.sub
build-aux/depcomp
build-aux/install-sh
build-aux/ltmain.sh
build-aux/m4/libtool.m4
build-aux/m4/lt~obsolete.m4
build-aux/m4/ltoptions.m4
build-aux/m4/ltsugar.m4
build-aux/m4/ltversion.m4
build-aux/missing
build-aux/compile
build-aux/test-driver
28
29
30
config.log
config.status
configure
31
libtool
Drak's avatar
Drak committed
32
33
34
src/config/bitcoin-config.h
src/config/bitcoin-config.h.in
src/config/stamp-h1
35
36
37
share/setup.nsi
share/qt/Info.plist

38
39
src/univalue/gen

40
41
42
43
44
45
src/qt/*.moc
src/qt/moc_*.cpp
src/qt/forms/ui_*.h

src/qt/test/moc*.cpp

46
47
.deps
.dirstamp
48
49
.*.swp
*.*~*
Luke Dashjr's avatar
Luke Dashjr committed
50
51
52
*.bak
*.rej
*.orig
53
*.pyc
Luke Dashjr's avatar
Luke Dashjr committed
54
*.o
Chris Beams's avatar
Chris Beams committed
55
*.o-*
Luke Dashjr's avatar
Luke Dashjr committed
56
57
*.patch
.bitcoin
58
59
60
61
62
63
64
*.a
*.pb.cc
*.pb.h

*.log
*.trs
*.dmg
65

66
67
68
*.json.h
*.raw.h

69
# Compilation and Qt preprocessor part
70
71
72
*.qm
Makefile
bitcoin-qt
73
Bitcoin-Qt.app
74

75
76
77
# Unit-tests
Makefile.test
bitcoin-qt_test
Michael Ford's avatar
Michael Ford committed
78
src/test/buildenv.py
79

80
# Resources cpp
81
qrc_*.cpp
82
83

# Qt creator
p2k's avatar
p2k committed
84
*.pro.user
85
86

# Mac specific
p2k's avatar
p2k committed
87
.DS_Store
88
build
89

90
91
92
93
94
95
96
97
98
99
100
101
102
103
#lcov
*.gcno
/*.info
test_bitcoin.coverage/
total.coverage/
coverage_percent.txt

#build tests
linux-coverage-build
linux-build
win32-build
qa/pull-tester/run-bitcoind-for-test.sh
qa/pull-tester/build-tests.sh

harry's avatar
harry committed
104
!src/leveldb*/Makefile
Michael Ford's avatar
Michael Ford committed
105
106

/doc/doxygen/