2010-07-14 17:54:31 +02:00
|
|
|
# Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
|
# Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
# file license.txt or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2011-07-05 18:19:34 +02:00
|
|
|
USE_UPNP:=0
|
|
|
|
|
2010-07-14 17:54:31 +02:00
|
|
|
INCLUDEPATHS= \
|
2011-08-12 00:20:07 +02:00
|
|
|
-I"C:\boost-1.47.0-mgw" \
|
|
|
|
-I"C:\db-4.8.30.NC-mgw\build_unix" \
|
2011-09-26 16:04:04 +02:00
|
|
|
-I"C:\openssl-1.0.0d-mgw\include"
|
2010-07-14 17:54:31 +02:00
|
|
|
|
|
|
|
LIBPATHS= \
|
2011-08-12 00:20:07 +02:00
|
|
|
-L"C:\boost-1.47.0-mgw\stage\lib" \
|
|
|
|
-L"C:\db-4.8.30.NC-mgw\build_unix" \
|
2011-09-26 16:04:04 +02:00
|
|
|
-L"C:\openssl-1.0.0d-mgw"
|
2010-07-14 17:54:31 +02:00
|
|
|
|
|
|
|
LIBS= \
|
2011-08-12 00:20:07 +02:00
|
|
|
-l boost_system-mgw45-mt-s-1_47 \
|
|
|
|
-l boost_filesystem-mgw45-mt-s-1_47 \
|
|
|
|
-l boost_program_options-mgw45-mt-s-1_47 \
|
|
|
|
-l boost_thread-mgw45-mt-s-1_47 \
|
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-05-22 04:25:54 +02:00
|
|
|
DEFS=-DWIN32 -D_WINDOWS -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -DUSE_IPV6
|
2011-09-26 16:04:04 +02:00
|
|
|
DEBUGFLAGS=-g
|
2012-05-09 03:48:14 +02:00
|
|
|
CFLAGS=-mthreads -O2 -w -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS)
|
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
|
|
|
|
2011-07-05 18:19:34 +02:00
|
|
|
ifdef USE_UPNP
|
2011-08-12 00:20:07 +02:00
|
|
|
INCLUDEPATHS += -I"C:\miniupnpc-1.6-mgw"
|
|
|
|
LIBPATHS += -L"C:\miniupnpc-1.6-mgw"
|
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-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= \
|
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 \
|
2010-07-27 22:43:55 +02:00
|
|
|
obj/irc.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 \
|
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 \
|
2012-04-04 13:19:30 +02:00
|
|
|
obj/noui.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-01-13 02:02:47 +01:00
|
|
|
obj/%.o: %.cpp $(HEADERS)
|
2010-07-26 19:44:51 +02:00
|
|
|
g++ -c $(CFLAGS) -o $@ $<
|
2010-07-14 17:54:31 +02:00
|
|
|
|
2012-01-13 02:02:47 +01:00
|
|
|
bitcoind.exe: $(OBJS:obj/%=obj/%)
|
2010-07-26 19:44:51 +02:00
|
|
|
g++ $(CFLAGS) -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)
|
|
|
|
g++ -c $(TESTDEFS) $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
test_bitcoin.exe: $(TESTOBJS) $(filter-out obj/init.o,$(OBJS:obj/%=obj/%))
|
|
|
|
g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ -lboost_unit_test_framework $(LIBS)
|
2010-07-14 17:54:31 +02:00
|
|
|
|
|
|
|
clean:
|
2011-09-26 16:04:04 +02:00
|
|
|
-del /Q bitcoind test_bitcoin
|
2010-07-14 17:54:31 +02:00
|
|
|
-del /Q obj\*
|
2012-04-26 17:20:44 +02:00
|
|
|
-del /Q obj-test\*
|
2012-04-07 02:06:53 +02:00
|
|
|
-del /Q build.h
|