mirror of
https://github.com/AskDavis/Casinotest.git
synced 2025-12-31 20:55:58 -08:00
149 lines
3.9 KiB
Plaintext
149 lines
3.9 KiB
Plaintext
# Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
# Distributed under the MIT/X11 software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
# Makefile for the MinGW g++ compiler/toolchain
|
|
#
|
|
# 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.
|
|
|
|
CXX ?= g++
|
|
|
|
USE_UPNP:=-
|
|
USE_IPV6:=1
|
|
|
|
BOOST_SUFFIX?=-mt
|
|
|
|
INCLUDEPATHS= \
|
|
-I"$(CURDIR)" \
|
|
-I"C:/msys64/usr/src/deps32/boost_1_60_0" \
|
|
-I"C:/msys64/usr/src/deps32/db-4.8.30.NC/build_unix" \
|
|
-I"C:/msys64/usr/src/deps32/openssl-1.0.2g/include" \
|
|
-I"C:/msys64/usr/src/deps32/qrencode-3.4.4"
|
|
|
|
LIBPATHS= \
|
|
-L"$(CURDIR)/leveldb" \
|
|
-L"C:/msys64/usr/src/deps32/boost_1_60_0/stage/lib" \
|
|
-L"C:/msys64/usr/src/deps32/db-4.8.30.NC/build_unix" \
|
|
-L"C:/msys64/usr/src/deps32/openssl-1.0.2g" \
|
|
-L"C:/msys64/usr/src/deps32/qrencode-3.4.4/.libs"
|
|
|
|
LIBS= \
|
|
-lleveldb \
|
|
-lmemenv \
|
|
-lboost_system$(BOOST_SUFFIX) \
|
|
-lboost_filesystem$(BOOST_SUFFIX) \
|
|
-lboost_program_options$(BOOST_SUFFIX) \
|
|
-lboost_thread$(BOOST_SUFFIX) \
|
|
-lboost_chrono$(BOOST_SUFFIX) \
|
|
-ldb_cxx \
|
|
-lssl \
|
|
-lcrypto
|
|
|
|
DEFS=-D_MT -DWIN32 -D_WINDOWS -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -DUSE_IPV6 -D__NO_SYSTEM_INCLUDES
|
|
DEBUGFLAGS=-g
|
|
CFLAGS=-mthreads -O2 -std=c++11 -w -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS) -static
|
|
# enable: ASLR, DEP and large address aware
|
|
LDFLAGS=-Wl,--dynamicbase -Wl,--nxcompat -Wl,--large-address-aware -static
|
|
|
|
TESTDEFS = -DTEST_DATA_DIR=$(abspath test/data)
|
|
|
|
ifndef USE_UPNP
|
|
override USE_UPNP = -
|
|
endif
|
|
ifneq (${USE_UPNP}, -)
|
|
LIBS += -l miniupnpc -l iphlpapi
|
|
DEFS += -DSTATICLIB -DUSE_UPNP=$(USE_UPNP)
|
|
endif
|
|
|
|
ifneq (${USE_IPV6}, -)
|
|
DEFS += -DUSE_IPV6=$(USE_IPV6)
|
|
endif
|
|
|
|
LIBS += -lmingwthrd -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lws2_32 -lmswsock -lshlwapi -lpthread
|
|
|
|
# TODO: make the mingw builds smarter about dependencies, like the linux/osx builds are
|
|
HEADERS = $(wildcard *.h)
|
|
|
|
OBJS= \
|
|
leveldb/libleveldb.a \
|
|
obj/alert.o \
|
|
obj/version.o \
|
|
obj/checkpoints.o \
|
|
obj/netbase.o \
|
|
obj/addrman.o \
|
|
obj/crypter.o \
|
|
obj/key.o \
|
|
obj/db.o \
|
|
obj/init.o \
|
|
obj/keystore.o \
|
|
obj/main.o \
|
|
obj/net.o \
|
|
obj/protocol.o \
|
|
obj/bitcoinrpc.o \
|
|
obj/rpcdump.o \
|
|
obj/rpcnet.o \
|
|
obj/rpcmining.o \
|
|
obj/rpcwallet.o \
|
|
obj/rpcblockchain.o \
|
|
obj/rpcrawtransaction.o \
|
|
obj/script.o \
|
|
obj/scrypt.o \
|
|
obj/sync.o \
|
|
obj/util.o \
|
|
obj/wallet.o \
|
|
obj/walletdb.o \
|
|
obj/hash.o \
|
|
obj/bloom.o \
|
|
obj/noui.o \
|
|
obj/leveldb.o \
|
|
obj/txdb.o
|
|
|
|
ifdef USE_SSE2
|
|
DEFS += -DUSE_SSE2
|
|
OBJS_SSE2= obj/scrypt-sse2.o
|
|
OBJS += $(OBJS_SSE2)
|
|
endif
|
|
|
|
all: casinocoind.exe
|
|
|
|
test check: test_casinocoin.exe FORCE
|
|
test_casinocoin.exe
|
|
|
|
#
|
|
# LevelDB support
|
|
#
|
|
DEFS += $(addprefix -I,$(CURDIR)/leveldb/include)
|
|
DEFS += $(addprefix -I,$(CURDIR)/leveldb/helpers)
|
|
|
|
leveldb/libleveldb.a:
|
|
cd leveldb && $(MAKE) CC=$(CC) CXX=$(CXX) OPT="$(CFLAGS)" TARGET_OS=NATIVE_WINDOWS libleveldb.a libmemenv.a && cd ..
|
|
|
|
obj/%-sse2.o: %-sse2.cpp
|
|
$(CXX) -c $(CFLAGS) -msse2 -mstackrealign -o $@ $<
|
|
|
|
obj/%.o: %.cpp $(HEADERS)
|
|
$(CXX) -c $(CFLAGS) -o $@ $<
|
|
|
|
casinocoind.exe: $(OBJS:obj/%=obj/%)
|
|
$(CXX) $(CFLAGS) $(LDFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS)
|
|
|
|
TESTOBJS := $(patsubst test/%.cpp,obj-test/%.o,$(wildcard test/*.cpp))
|
|
|
|
obj-test/%.o: test/%.cpp $(HEADERS)
|
|
$(CXX) -c $(TESTDEFS) $(CFLAGS) -o $@ $<
|
|
|
|
test_casinocoin.exe: $(TESTOBJS) $(filter-out obj/init.o,$(OBJS:obj/%=obj/%))
|
|
$(CXX) $(CFLAGS) $(LDFLAGS) -o $@ $(LIBPATHS) $^ -lboost_unit_test_framework$(BOOST_SUFFIX) $(LIBS)
|
|
|
|
clean:
|
|
rm -f casinocoind.exe test_casinocoin.exe
|
|
rm -f obj/*
|
|
rm -f obj-test/*
|
|
cd leveldb && $(MAKE) TARGET_OS=NATIVE_WINDOWS clean && cd ..
|
|
|
|
FORCE:
|