-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
autotools: switch to autotools buildsystem
- Loading branch information
Cory Fields
committed
Sep 6, 2013
1 parent
2fee100
commit 35b8af9
Showing
59 changed files
with
3,527 additions
and
1,508 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
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,159 @@ | ||
ACLOCAL_AMFLAGS = -I src/m4 | ||
SUBDIRS = src | ||
.PHONY: deploy | ||
|
||
GZIP_ENV="-9n" | ||
|
||
BITCOIND_BIN=$(top_builddir)/src/bitcoind$(EXEEXT) | ||
BITCOIN_QT_BIN=$(top_builddir)/src/qt/bitcoin-qt$(EXEEXT) | ||
BITCOIN_WIN_INSTALLER=$(PACKAGE)-$(PACKAGE_VERSION)-win32-setup$(EXEEXT) | ||
|
||
OSX_APP=Bitcoin-Qt.app | ||
OSX_DMG=Bitcoin-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 | ||
|
||
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 | ||
|
||
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 | ||
-$(GIT) archive --format=tar HEAD -- src/version.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): $(BITCOIND_BIN) $(BITCOIN_QT_BIN) | ||
$(MAKE) distdir | ||
$(MKDIR_P) $(top_builddir)/release | ||
$(INSTALL_STRIP_PROGRAM) $(top_builddir)/src/bitcoind$(EXEEXT) $(top_builddir)/release | ||
$(INSTALL_STRIP_PROGRAM) $(top_builddir)/src/qt/bitcoin-qt$(EXEEXT) $(top_builddir)/release | ||
@test -f $(MAKENSIS) && $(MAKENSIS) $(top_builddir)/share/setup.nsi || \ | ||
echo error: could not build $@ | ||
|
||
$(BITCOIND_BIN): | ||
make -C $(top_srcdir)/src bitcoind$(EXEEXT) | ||
|
||
$(BITCOIN_QT_BIN): | ||
make -C $(top_srcdir)/src/qt bitcoin-qt$(EXEEXT) | ||
|
||
|
||
$(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) $< $@ | ||
|
||
$(OSX_APP)/Contents/Resources/bitcoin.icns: $(OSX_INSTALLER_ICONS) | ||
$(MKDIR_P) $(@D) | ||
$(INSTALL) $< $@ | ||
|
||
$(OSX_APP)/Contents/MacOS/Bitcoin-Qt: $(BITCOIN_QT_BIN) | ||
$(MKDIR_P) $(@D) | ||
$(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/Bitcoin-Qt | ||
|
||
$(OSX_DMG): $(OSX_APP_BUILT) $(OSX_PACKAGING) | ||
$(OSX_DEPLOY_SCRIPT) $(OSX_APP) -add-qt-tr da,de,es,hu,ru,uk,zh_CN,zh_TW -dmg -fancy $(OSX_FANCY_PLIST) -verbose 2 | ||
rm -rf $(OSX_APP) | ||
|
||
|
||
if TARGET_DARWIN | ||
deploy: $(OSX_DMG) | ||
endif | ||
if TARGET_WINDOWS | ||
deploy: $(BITCOIN_WIN_INSTALLER) | ||
endif | ||
|
||
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 | ||
-@TIMEOUT=15 qa/pull-tester/run-bitcoind-for-test.sh $(JAVA) -Xmx2G -jar $(JAVA_COMPARISON_TOOL) 1 18444 | ||
$(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: | ||
@qa/pull-tester/run-bitcoind-for-test.sh $(JAVA) -Xmx2G -jar $(JAVA_COMPARISON_TOOL) 1 18444 | ||
endif | ||
|
||
EXTRA_DIST = $(top_srcdir)/share/genbuild.sh qa/pull-tester/pull-tester.sh $(WINDOWS_PACKAGING) $(OSX_PACKAGING) | ||
|
||
CLEANFILES = $(OSX_DMG) $(BITCOIN_WIN_INSTALLER) | ||
|
||
.INTERMEDIATE: $(OSX_APP_BUILT) $(COVERAGE_INFO) | ||
|
||
clean-local: | ||
rm -rf test_bitcoin.coverage/ total.coverage/ |
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
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 @@ | ||
autoreconf -vif |
Oops, something went wrong.