95d888a6d1
Introduces two new RPC calls: * dumpprivkey: retrieve the private key corresponding to an address * importprivkey: add a private key to your wallet The private key format is analoguous to the address format. It is a 51-character base58-encoded string, that includes a version number and a checksum. Includes patch by mhanne: * add optional account parameter for importprivkey, if omitted use default
132 lines
2.9 KiB
Makefile
132 lines
2.9 KiB
Makefile
# -*- mode: Makefile; -*-
|
|
# Copyright (c) 2011 Bitcoin Developers
|
|
# Distributed under the MIT/X11 software license, see the accompanying
|
|
# file license.txt or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
# Mac OS X makefile for bitcoin
|
|
# Originally by Laszlo Hanyecz (solar@heliacal.net)
|
|
|
|
CXX=llvm-g++
|
|
DEPSDIR=/opt/local
|
|
|
|
INCLUDEPATHS= \
|
|
-I"$(DEPSDIR)/include" \
|
|
-I"$(DEPSDIR)/include/db48"
|
|
|
|
LIBPATHS= \
|
|
-L"$(DEPSDIR)/lib" \
|
|
-L"$(DEPSDIR)/lib/db48"
|
|
|
|
USE_UPNP:=1
|
|
|
|
LIBS= -dead_strip
|
|
ifdef STATIC
|
|
# Build STATIC if you are redistributing the bitcoind binary
|
|
LIBS += \
|
|
$(DEPSDIR)/lib/db48/libdb_cxx-4.8.a \
|
|
$(DEPSDIR)/lib/libboost_system-mt.a \
|
|
$(DEPSDIR)/lib/libboost_filesystem-mt.a \
|
|
$(DEPSDIR)/lib/libboost_program_options-mt.a \
|
|
$(DEPSDIR)/lib/libboost_thread-mt.a \
|
|
$(DEPSDIR)/lib/libssl.a \
|
|
$(DEPSDIR)/lib/libcrypto.a
|
|
else
|
|
LIBS += \
|
|
-ldb_cxx-4.8 \
|
|
-lboost_system-mt \
|
|
-lboost_filesystem-mt \
|
|
-lboost_program_options-mt \
|
|
-lboost_thread-mt \
|
|
-lssl \
|
|
-lcrypto
|
|
endif
|
|
|
|
DEFS=-DMAC_OSX -DMSG_NOSIGNAL=0 -DUSE_SSL
|
|
|
|
DEBUGFLAGS=-g
|
|
# ppc doesn't work because we don't support big-endian
|
|
CFLAGS=-mmacosx-version-min=10.5 -arch i386 -O3 -Wno-invalid-offsetof -Wformat $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS)
|
|
HEADERS = \
|
|
base58.h \
|
|
bignum.h \
|
|
checkpoints.h \
|
|
crypter.h \
|
|
db.h \
|
|
headers.h \
|
|
init.h \
|
|
irc.h \
|
|
key.h \
|
|
keystore.h \
|
|
main.h \
|
|
net.h \
|
|
noui.h \
|
|
protocol.h \
|
|
bitcoinrpc.h \
|
|
script.h \
|
|
serialize.h \
|
|
strlcpy.h \
|
|
uint256.h \
|
|
util.h \
|
|
wallet.h
|
|
|
|
OBJS= \
|
|
obj/checkpoints.o \
|
|
obj/crypter.o \
|
|
obj/key.o \
|
|
obj/db.o \
|
|
obj/init.o \
|
|
obj/irc.o \
|
|
obj/keystore.o \
|
|
obj/main.o \
|
|
obj/net.o \
|
|
obj/protocol.o \
|
|
obj/bitcoinrpc.o \
|
|
obj/rpcdump.o \
|
|
obj/script.o \
|
|
obj/util.o \
|
|
obj/wallet.o
|
|
|
|
ifdef USE_UPNP
|
|
DEFS += -DUSE_UPNP=$(USE_UPNP)
|
|
ifdef STATIC
|
|
LIBS += $(DEPSDIR)/lib/libminiupnpc.a
|
|
else
|
|
LIBS += -lminiupnpc
|
|
endif
|
|
endif
|
|
|
|
|
|
all: bitcoind
|
|
|
|
# auto-generated dependencies:
|
|
-include obj/nogui/*.P
|
|
-include obj/test/*.P
|
|
|
|
obj/nogui/%.o: %.cpp
|
|
$(CXX) -c $(CFLAGS) -MMD -o $@ $<
|
|
@cp $(@:%.o=%.d) $(@:%.o=%.P); \
|
|
sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
|
|
-e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \
|
|
rm -f $(@:%.o=%.d)
|
|
|
|
bitcoind: $(OBJS:obj/%=obj/nogui/%)
|
|
$(CXX) $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS)
|
|
|
|
obj/test/%.o: test/%.cpp
|
|
$(CXX) -c $(CFLAGS) -MMD -o $@ $<
|
|
@cp $(@:%.o=%.d) $(@:%.o=%.P); \
|
|
sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
|
|
-e '/^$$/ d' -e 's/$$/ :/' < $(@:%.o=%.d) >> $(@:%.o=%.P); \
|
|
rm -f $(@:%.o=%.d)
|
|
|
|
test_bitcoin: obj/test/test_bitcoin.o $(filter-out obj/nogui/init.o,$(OBJS:obj/%=obj/nogui/%))
|
|
$(CXX) $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS) $(DEPSDIR)/lib/libboost_unit_test_framework-mt.a
|
|
|
|
clean:
|
|
-rm -f bitcoind test_bitcoin
|
|
-rm -f obj/*.o
|
|
-rm -f obj/nogui/*.o
|
|
-rm -f obj/test/*.o
|
|
-rm -f obj/*.P
|
|
-rm -f obj/nogui/*.P
|
|
-rm -f obj/test/*.P
|