48f23746f0
Many people need or want to build go-ethereum from the git repository, mostly to stay up to date with recent changes. We cannot expect that people without Go experience grok the Go workspace concept. With the Makefile, building from github requires only three steps (provided that a Go toolchain is installed): - git clone https://github.com/ethereum/go-ethereum - ... install C libraries (libgmp, etc.) ... - make
35 lines
592 B
Plaintext
35 lines
592 B
Plaintext
# See http://help.github.com/ignore-files/ for more about ignoring files.
|
|
#
|
|
# If you find yourself ignoring temporary files generated by your text editor
|
|
# or operating system, you probably want to add a global ignore instead:
|
|
# git config --global core.excludesfile ~/.gitignore_global
|
|
|
|
/tmp
|
|
*/**/*un~
|
|
*/**/*.test
|
|
*un~
|
|
.DS_Store
|
|
*/**/.DS_Store
|
|
.ethtest
|
|
*/**/*tx_database*
|
|
*/**/*dapps*
|
|
Godeps/_workspace/pkg
|
|
Godeps/_workspace/bin
|
|
|
|
#*
|
|
.#*
|
|
*#
|
|
*~
|
|
.project
|
|
.settings
|
|
|
|
mist
|
|
cmd/mist/mist
|
|
deploy/osx/Mist.app
|
|
deploy/osx/Mist\ Installer.dmg
|
|
|
|
# used by the Makefile
|
|
/build/_workspace/
|
|
/build/bin/
|
|
|