2010-07-14 17:54:31 +02:00
|
|
|
# Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
|
# Distributed under the MIT/X11 software license, see the accompanying
|
2012-07-22 23:49:09 +02:00
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2010-07-14 17:54:31 +02:00
|
|
|
|
2012-12-21 20:41:48 +01:00
|
|
|
# Makefile for the MinGW g++ compiler/toolchain
|
|
|
|
#
|
|
|
|
# Assumes Berkeley DB, Boost, and OpenSSL have all been compiled and installed
|
|
|
|
# into /usr/local (/usr/local/include, /usr/local/lib).
|
|
|
|
#
|
|
|
|
# If dependencies are somewhere else, run 'make DEPSDIR=/path/'
|
|
|
|
#
|
|
|
|
# Boost libraries are given wacky names that include the particular version of
|
|
|
|
# boost you're using; set BOOST_SUFFIX appropriately.
|
|
|
|
#
|
|
|
|
# 'make clean' assumes it is running inside a MSYS shell, and uses 'rm'
|
|
|
|
# to remove files.
|
|
|
|
|
2013-02-15 20:10:01 +01:00
|
|
|
CXX ?= g++
|
|
|
|
|
2012-12-21 20:41:48 +01:00
|
|
|
USE_UPNP:=-
|
2012-06-08 18:35:58 +02:00
|
|
|
USE_IPV6:=1
|
2011-07-05 18:19:34 +02:00
|
|
|
|
2012-12-21 20:41:48 +01:00
|
|
|
DEPSDIR?=/usr/local
|
|
|
|
BOOST_SUFFIX?=-mgw46-mt-sd-1_52
|
|
|
|
|
2010-07-14 17:54:31 +02:00
|
|
|
INCLUDEPATHS= \
|
2012-12-21 20:41:48 +01:00
|
|
|
-I"$(CURDIR)" \
|
|
|
|
-I"$(DEPSDIR)/include"
|
2010-07-14 17:54:31 +02:00
|
|
|
|
|
|
|
LIBPATHS= \
|
2012-12-21 20:41:48 +01:00
|
|
|
-L"$(CURDIR)/leveldb" \
|
|
|
|
-L"$(DEPSDIR)/lib"
|
2010-07-14 17:54:31 +02:00
|
|
|
|
|
|
|
LIBS= \
|
2012-12-21 20:41:48 +01:00
|
|
|
-l leveldb \
|
|
|
|
-l memenv \
|
|
|
|
-l boost_system$(BOOST_SUFFIX) \
|
|
|
|
-l boost_filesystem$(BOOST_SUFFIX) \
|
|
|
|
-l boost_program_options$(BOOST_SUFFIX) \
|
|
|
|
-l boost_thread$(BOOST_SUFFIX) \
|
|
|
|
-l boost_chrono$(BOOST_SUFFIX) \
|
2010-07-14 17:54:31 +02:00
|
|
|
-l db_cxx \
|
2011-05-27 02:53:13 +02:00
|
|
|
-l ssl \
|
|
|
|
-l crypto
|
2010-07-14 17:54:31 +02:00
|
|
|
|
2012-06-08 18:35:58 +02:00
|
|
|
DEFS=-DWIN32 -D_WINDOWS -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE
|
2011-09-26 16:04:04 +02:00
|
|
|
DEBUGFLAGS=-g
|
2012-09-30 15:26:41 +02:00
|
|
|
CFLAGS=-mthreads -O2 -w -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS)
|
2013-01-10 14:21:52 +01:00
|
|
|
# enable: ASLR, DEP and large address aware
|
|
|
|
LDFLAGS=-Wl,--dynamicbase -Wl,--nxcompat -Wl,--large-address-aware
|
2012-01-12 22:55:44 +01:00
|
|
|
|
2012-04-26 17:20:44 +02:00
|
|
|
TESTDEFS = -DTEST_DATA_DIR=$(abspath test/data)
|
2010-07-27 22:43:55 +02:00
|
|
|
|
2012-06-08 18:36:40 +02:00
|
|
|
ifndef USE_UPNP
|
|
|
|
override USE_UPNP = -
|
|
|
|
endif
|
|
|
|
ifneq (${USE_UPNP}, -)
|
2011-07-05 18:19:34 +02:00
|
|
|
LIBS += -l miniupnpc -l iphlpapi
|
|
|
|
DEFS += -DSTATICLIB -DUSE_UPNP=$(USE_UPNP)
|
|
|
|
endif
|
2011-03-26 13:01:27 +01:00
|
|
|
|
2012-06-08 18:35:58 +02:00
|
|
|
ifneq (${USE_IPV6}, -)
|
2012-06-08 18:43:06 +02:00
|
|
|
DEFS += -DUSE_IPV6=$(USE_IPV6)
|
2012-06-08 18:35:58 +02:00
|
|
|
endif
|
|
|
|
|
2012-06-24 14:16:30 +02:00
|
|
|
LIBS += -l kernel32 -l user32 -l gdi32 -l comdlg32 -l winspool -l winmm -l shell32 -l comctl32 -l ole32 -l oleaut32 -l uuid -l rpcrt4 -l advapi32 -l ws2_32 -l mswsock -l shlwapi
|
2011-03-26 13:01:27 +01:00
|
|
|
|
2012-01-12 22:55:44 +01:00
|
|
|
# TODO: make the mingw builds smarter about dependencies, like the linux/osx builds are
|
|
|
|
HEADERS = $(wildcard *.h)
|
|
|
|
|
2010-07-27 22:43:55 +02:00
|
|
|
OBJS= \
|
2013-02-15 20:10:01 +01:00
|
|
|
leveldb/libleveldb.a \
|
2012-08-28 23:04:54 +02:00
|
|
|
obj/alert.o \
|
2012-04-07 02:06:53 +02:00
|
|
|
obj/version.o \
|
2011-09-08 22:50:58 +02:00
|
|
|
obj/checkpoints.o \
|
2012-01-03 23:33:31 +01:00
|
|
|
obj/netbase.o \
|
2012-01-04 23:39:45 +01:00
|
|
|
obj/addrman.o \
|
2011-08-11 17:19:36 +02:00
|
|
|
obj/crypter.o \
|
2011-07-11 21:30:40 +02:00
|
|
|
obj/key.o \
|
2010-07-27 22:43:55 +02:00
|
|
|
obj/db.o \
|
2011-08-11 17:19:36 +02:00
|
|
|
obj/init.o \
|
2011-06-01 18:27:05 +02:00
|
|
|
obj/keystore.o \
|
2010-07-27 22:43:55 +02:00
|
|
|
obj/main.o \
|
2011-08-11 17:19:36 +02:00
|
|
|
obj/net.o \
|
2011-08-11 18:14:53 +02:00
|
|
|
obj/protocol.o \
|
2011-09-18 12:41:48 +02:00
|
|
|
obj/bitcoinrpc.o \
|
2011-07-13 11:56:38 +02:00
|
|
|
obj/rpcdump.o \
|
2012-06-29 05:18:38 +02:00
|
|
|
obj/rpcnet.o \
|
2012-08-21 08:21:33 +02:00
|
|
|
obj/rpcmining.o \
|
2012-08-21 16:38:57 +02:00
|
|
|
obj/rpcwallet.o \
|
2012-08-21 17:03:38 +02:00
|
|
|
obj/rpcblockchain.o \
|
2012-05-31 22:01:16 +02:00
|
|
|
obj/rpcrawtransaction.o \
|
2011-08-11 17:19:36 +02:00
|
|
|
obj/script.o \
|
2012-05-11 17:00:03 +02:00
|
|
|
obj/sync.o \
|
2011-08-11 17:19:36 +02:00
|
|
|
obj/util.o \
|
2012-04-04 13:19:30 +02:00
|
|
|
obj/wallet.o \
|
2012-04-15 23:39:49 +02:00
|
|
|
obj/walletdb.o \
|
2013-01-10 19:16:00 +01:00
|
|
|
obj/hash.o \
|
2012-08-13 05:26:27 +02:00
|
|
|
obj/bloom.o \
|
2012-10-16 22:23:39 +02:00
|
|
|
obj/noui.o \
|
|
|
|
obj/leveldb.o \
|
|
|
|
obj/txdb.o
|
2010-07-14 17:54:31 +02:00
|
|
|
|
|
|
|
|
2011-09-26 16:04:04 +02:00
|
|
|
all: bitcoind.exe
|
2010-07-14 17:54:31 +02:00
|
|
|
|
2012-09-18 17:38:19 +02:00
|
|
|
test check: test_bitcoin.exe FORCE
|
|
|
|
test_bitcoin.exe
|
|
|
|
|
2012-08-30 21:13:50 +02:00
|
|
|
#
|
|
|
|
# LevelDB support
|
|
|
|
#
|
2012-10-16 22:23:39 +02:00
|
|
|
DEFS += $(addprefix -I,$(CURDIR)/leveldb/include)
|
2012-08-30 21:13:50 +02:00
|
|
|
DEFS += $(addprefix -I,$(CURDIR)/leveldb/helpers)
|
2012-12-21 20:41:48 +01:00
|
|
|
|
2012-08-30 21:13:50 +02:00
|
|
|
leveldb/libleveldb.a:
|
2013-02-15 20:10:01 +01:00
|
|
|
cd leveldb && $(MAKE) CC=$(CC) CXX=$(CXX) OPT="$(CFLAGS)" TARGET_OS=NATIVE_WINDOWS libleveldb.a libmemenv.a && cd ..
|
2012-08-30 21:13:50 +02:00
|
|
|
|
2012-01-13 02:02:47 +01:00
|
|
|
obj/%.o: %.cpp $(HEADERS)
|
2013-02-15 20:10:01 +01:00
|
|
|
$(CXX) -c $(CFLAGS) -o $@ $<
|
2010-07-14 17:54:31 +02:00
|
|
|
|
2012-01-13 02:02:47 +01:00
|
|
|
bitcoind.exe: $(OBJS:obj/%=obj/%)
|
2013-02-15 20:10:01 +01:00
|
|
|
$(CXX) $(CFLAGS) $(LDFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS)
|
2010-07-14 17:54:31 +02:00
|
|
|
|
2012-04-26 17:20:44 +02:00
|
|
|
TESTOBJS := $(patsubst test/%.cpp,obj-test/%.o,$(wildcard test/*.cpp))
|
2011-06-27 20:05:02 +02:00
|
|
|
|
2012-04-26 17:20:44 +02:00
|
|
|
obj-test/%.o: test/%.cpp $(HEADERS)
|
2013-02-15 20:10:01 +01:00
|
|
|
$(CXX) -c $(TESTDEFS) $(CFLAGS) -o $@ $<
|
2012-04-26 17:20:44 +02:00
|
|
|
|
|
|
|
test_bitcoin.exe: $(TESTOBJS) $(filter-out obj/init.o,$(OBJS:obj/%=obj/%))
|
2013-02-15 20:10:01 +01:00
|
|
|
$(CXX) $(CFLAGS) $(LDFLAGS) -o $@ $(LIBPATHS) $^ -lboost_unit_test_framework$(BOOST_SUFFIX) $(LIBS)
|
2010-07-14 17:54:31 +02:00
|
|
|
|
|
|
|
clean:
|
2012-12-21 20:41:48 +01:00
|
|
|
rm -f bitcoind.exe test_bitcoin.exe
|
|
|
|
rm -f obj/*
|
|
|
|
rm -f obj-test/*
|
|
|
|
cd leveldb && $(MAKE) TARGET_OS=NATIVE_WINDOWS clean && cd ..
|
2012-09-18 17:38:19 +02:00
|
|
|
|
|
|
|
FORCE:
|