-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit ac37162
Showing
1,031 changed files
with
446,534 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Copyright (c) 2009-2015 Bitcoin Developers | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Building Bitcoin | ||
|
||
See doc/build-*.md for instructions on building bitcoind, | ||
the intended-for-services, no-graphical-interface, reference | ||
implementation of Bitcoin. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,202 @@ | ||
ACLOCAL_AMFLAGS = -I build-aux/m4 | ||
SUBDIRS = src | ||
.PHONY: deploy FORCE | ||
|
||
GZIP_ENV="-9n" | ||
|
||
BITCOIND_BIN=$(top_builddir)/src/Mooncoind$(EXEEXT) | ||
BITCOIN_QT_BIN=$(top_builddir)/src/qt/Mooncoin-qt$(EXEEXT) | ||
BITCOIN_CLI_BIN=$(top_builddir)/src/Mooncoin-cli$(EXEEXT) | ||
BITCOIN_WIN_INSTALLER=$(PACKAGE)-$(PACKAGE_VERSION)-win$(WINDOWS_BITS)-setup$(EXEEXT) | ||
|
||
OSX_APP=Mooncoin-Qt.app | ||
OSX_DMG=Mooncoin-Qt.dmg | ||
OSX_DEPLOY_SCRIPT=$(top_srcdir)/contrib/macdeploy/macdeployqtplus | ||
OSX_FANCY_PLIST=$(top_srcdir)/contrib/macdeploy/fancy.plist | ||
OSX_INSTALLER_ICONS=$(top_srcdir)/src/qt/res/icons/bitcoin.icns | ||
OSX_PLIST=$(top_srcdir)/share/qt/Info.plist #not installed | ||
OSX_QT_TRANSLATIONS = da,de,es,hu,ru,uk,zh_CN,zh_TW | ||
|
||
DIST_DOCS = $(wildcard doc/*.md) $(wildcard doc/release-notes/*.md) | ||
|
||
WINDOWS_PACKAGING = $(top_srcdir)/share/pixmaps/bitcoin.ico \ | ||
$(top_srcdir)/share/pixmaps/nsis-header.bmp \ | ||
$(top_srcdir)/share/pixmaps/nsis-wizard.bmp \ | ||
$(top_srcdir)/doc/README_windows.txt | ||
|
||
OSX_PACKAGING = $(OSX_DEPLOY_SCRIPT) $(OSX_FANCY_PLIST) $(OSX_INSTALLER_ICONS) \ | ||
$(top_srcdir)/contrib/macdeploy/background.png \ | ||
$(top_srcdir)/contrib/macdeploy/DS_Store \ | ||
$(top_srcdir)/contrib/macdeploy/detached-sig-apply.sh \ | ||
$(top_srcdir)/contrib/macdeploy/detached-sig-create.sh | ||
|
||
COVERAGE_INFO = baseline_filtered_combined.info baseline.info block_test.info \ | ||
leveldb_baseline.info test_bitcoin_filtered.info total_coverage.info \ | ||
baseline_filtered.info block_test_filtered.info \ | ||
leveldb_baseline_filtered.info test_bitcoin_coverage.info test_bitcoin.info | ||
|
||
dist-hook: | ||
-$(MAKE) -C $(top_distdir)/src/leveldb clean | ||
-$(MAKE) -C $(top_distdir)/src/secp256k1 distclean | ||
-$(GIT) archive --format=tar HEAD -- src/clientversion.cpp | $(AMTAR) -C $(top_distdir) -xf - | ||
|
||
distcheck-hook: | ||
$(MKDIR_P) $(top_distdir)/_build/src/leveldb | ||
cp -rf $(top_srcdir)/src/leveldb/* $(top_distdir)/_build/src/leveldb/ | ||
-$(MAKE) -C $(top_distdir)/_build/src/leveldb clean | ||
|
||
distcleancheck: | ||
@: | ||
|
||
$(BITCOIN_WIN_INSTALLER): all-recursive | ||
$(MKDIR_P) $(top_builddir)/release | ||
STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $(BITCOIND_BIN) $(top_builddir)/release | ||
STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $(BITCOIN_QT_BIN) $(top_builddir)/release | ||
STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $(BITCOIN_CLI_BIN) $(top_builddir)/release | ||
@test -f $(MAKENSIS) && $(MAKENSIS) $(top_builddir)/share/setup.nsi || \ | ||
echo error: could not build $@ | ||
|
||
$(if $(findstring src/,$(MAKECMDGOALS)),$(MAKECMDGOALS), none): FORCE | ||
$(MAKE) -C src $(patsubst src/%,%,$@) | ||
|
||
$(OSX_APP)/Contents/PkgInfo: | ||
$(MKDIR_P) $(@D) | ||
@echo "APPL????" > $@ | ||
|
||
$(OSX_APP)/Contents/Resources/empty.lproj: | ||
$(MKDIR_P) $(@D) | ||
@touch $@ | ||
|
||
$(OSX_APP)/Contents/Info.plist: $(OSX_PLIST) | ||
$(MKDIR_P) $(@D) | ||
$(INSTALL_DATA) $< $@ | ||
|
||
$(OSX_APP)/Contents/Resources/bitcoin.icns: $(OSX_INSTALLER_ICONS) | ||
$(MKDIR_P) $(@D) | ||
$(INSTALL_DATA) $< $@ | ||
|
||
$(OSX_APP)/Contents/MacOS/Mooncoin-Qt: $(BITCOIN_QT_BIN) | ||
$(MKDIR_P) $(@D) | ||
STRIPPROG="$(STRIP)" $(INSTALL_STRIP_PROGRAM) $< $@ | ||
|
||
OSX_APP_BUILT=$(OSX_APP)/Contents/PkgInfo $(OSX_APP)/Contents/Resources/empty.lproj \ | ||
$(OSX_APP)/Contents/Resources/bitcoin.icns $(OSX_APP)/Contents/Info.plist \ | ||
$(OSX_APP)/Contents/MacOS/Mooncoin-Qt | ||
|
||
if BUILD_DARWIN | ||
$(OSX_DMG): $(OSX_APP_BUILT) $(OSX_PACKAGING) | ||
$(OSX_DEPLOY_SCRIPT) $(OSX_APP) -add-qt-tr $(OSX_QT_TRANSLATIONS) -translations-dir=$(QT_TRANSLATION_DIR) -dmg -fancy $(OSX_FANCY_PLIST) -verbose 2 | ||
|
||
deploydir: $(OSX_DMG) | ||
else | ||
APP_DIST_DIR=$(top_builddir)/dist | ||
APP_DIST_EXTRAS=$(APP_DIST_DIR)/.background/background.png $(APP_DIST_DIR)/.DS_Store $(APP_DIST_DIR)/Applications | ||
|
||
$(APP_DIST_DIR)/Applications: | ||
@rm -f $@ | ||
@cd $(@D); $(LN_S) /Applications $(@F) | ||
|
||
$(APP_DIST_EXTRAS): $(APP_DIST_DIR)/$(OSX_APP)/Contents/MacOS/Mooncoin-Qt | ||
|
||
$(OSX_DMG): $(APP_DIST_EXTRAS) | ||
$(GENISOIMAGE) -no-cache-inodes -D -l -probe -V "Mooncoin-Qt" -no-pad -r -apple -o $@ dist | ||
|
||
$(APP_DIST_DIR)/.background/background.png: | ||
$(MKDIR_P) $(@D) | ||
$(INSTALL) $(top_srcdir)/contrib/macdeploy/background.png $@ | ||
$(APP_DIST_DIR)/.DS_Store: | ||
$(INSTALL) $(top_srcdir)/contrib/macdeploy/DS_Store $@ | ||
|
||
$(APP_DIST_DIR)/$(OSX_APP)/Contents/MacOS/Mooncoin-Qt: $(OSX_APP_BUILT) $(OSX_PACKAGING) | ||
INSTALLNAMETOOL=$(INSTALLNAMETOOL) OTOOL=$(OTOOL) STRIP=$(STRIP) $(OSX_DEPLOY_SCRIPT) $(OSX_APP) -translations-dir=$(QT_TRANSLATION_DIR) -add-qt-tr $(OSX_QT_TRANSLATIONS) -verbose 2 | ||
|
||
deploydir: $(APP_DIST_EXTRAS) | ||
endif | ||
|
||
if TARGET_DARWIN | ||
appbundle: $(OSX_APP_BUILT) | ||
deploy: $(OSX_DMG) | ||
endif | ||
if TARGET_WINDOWS | ||
deploy: $(BITCOIN_WIN_INSTALLER) | ||
endif | ||
|
||
$(BITCOIN_QT_BIN): FORCE | ||
$(MAKE) -C src qt/$(@F) | ||
|
||
$(BITCOIND_BIN): FORCE | ||
$(MAKE) -C src $(@F) | ||
|
||
$(BITCOIN_CLI_BIN): FORCE | ||
$(MAKE) -C src $(@F) | ||
|
||
if USE_LCOV | ||
|
||
baseline.info: | ||
$(LCOV) -c -i -d $(abs_builddir)/src -o $@ | ||
|
||
baseline_filtered.info: baseline.info | ||
$(LCOV) -r $< "/usr/include/*" -o $@ | ||
|
||
leveldb_baseline.info: baseline_filtered.info | ||
$(LCOV) -c -i -d $(abs_builddir)/src/leveldb -b $(abs_builddir)/src/leveldb -o $@ | ||
|
||
leveldb_baseline_filtered.info: leveldb_baseline.info | ||
$(LCOV) -r $< "/usr/include/*" -o $@ | ||
|
||
baseline_filtered_combined.info: leveldb_baseline_filtered.info baseline_filtered.info | ||
$(LCOV) -a leveldb_baseline_filtered.info -a baseline_filtered.info -o $@ | ||
|
||
test_bitcoin.info: baseline_filtered_combined.info | ||
$(MAKE) -C src/ check | ||
$(LCOV) -c -d $(abs_builddir)/src -t test_bitcoin -o $@ | ||
$(LCOV) -z -d $(abs_builddir)/src | ||
$(LCOV) -z -d $(abs_builddir)/src/leveldb | ||
|
||
test_bitcoin_filtered.info: test_bitcoin.info | ||
$(LCOV) -r $< "/usr/include/*" -o $@ | ||
|
||
block_test.info: test_bitcoin_filtered.info | ||
$(MKDIR_P) qa/tmp | ||
-@TIMEOUT=15 qa/pull-tester/run-bitcoind-for-test.sh $(JAVA) -jar $(JAVA_COMPARISON_TOOL) qa/tmp/compTool 0 | ||
$(LCOV) -c -d $(abs_builddir)/src --t BitcoinJBlockTest -o $@ | ||
$(LCOV) -z -d $(abs_builddir)/src | ||
$(LCOV) -z -d $(abs_builddir)/src/leveldb | ||
|
||
block_test_filtered.info: block_test.info | ||
$(LCOV) -r $< "/usr/include/*" -o $@ | ||
|
||
test_bitcoin_coverage.info: baseline_filtered_combined.info test_bitcoin_filtered.info | ||
$(LCOV) -a baseline_filtered.info -a leveldb_baseline_filtered.info -a test_bitcoin_filtered.info -o $@ | ||
|
||
total_coverage.info: baseline_filtered_combined.info test_bitcoin_filtered.info block_test_filtered.info | ||
$(LCOV) -a baseline_filtered.info -a leveldb_baseline_filtered.info -a test_bitcoin_filtered.info -a block_test_filtered.info -o $@ | $(GREP) "\%" | $(AWK) '{ print substr($$3,2,50) "/" $$5 }' > coverage_percent.txt | ||
|
||
test_bitcoin.coverage/.dirstamp: test_bitcoin_coverage.info | ||
$(GENHTML) -s $< -o $(@D) | ||
@touch $@ | ||
|
||
total.coverage/.dirstamp: total_coverage.info | ||
$(GENHTML) -s $< -o $(@D) | ||
@touch $@ | ||
|
||
cov: test_bitcoin.coverage/.dirstamp total.coverage/.dirstamp | ||
|
||
endif | ||
|
||
if USE_COMPARISON_TOOL | ||
check-local: | ||
$(MKDIR_P) qa/tmp | ||
@qa/pull-tester/run-bitcoind-for-test.sh $(JAVA) -jar $(JAVA_COMPARISON_TOOL) qa/tmp/compTool $(COMPARISON_TOOL_REORG_TESTS) 2>&1 | ||
endif | ||
|
||
dist_noinst_SCRIPTS = autogen.sh | ||
|
||
EXTRA_DIST = $(top_srcdir)/share/genbuild.sh qa/pull-tester/rpc-tests.sh qa/pull-tester/run-bitcoin-cli qa/rpc-tests $(DIST_DOCS) $(WINDOWS_PACKAGING) $(OSX_PACKAGING) | ||
|
||
CLEANFILES = $(OSX_DMG) $(BITCOIN_WIN_INSTALLER) | ||
|
||
.INTERMEDIATE: $(COVERAGE_INFO) | ||
|
||
clean-local: | ||
rm -rf test_bitcoin.coverage/ total.coverage/ $(OSX_APP) |
Oops, something went wrong.