Makefile integration of LevelDB

This commit is contained in:
Pieter Wuille
2012-08-30 21:13:50 +02:00
parent 9f56678fce
commit 3ff3a2bd60
5 changed files with 72 additions and 0 deletions

View File

@@ -4,6 +4,7 @@
USE_UPNP:=0
USE_IPV6:=1
USE_LEVELDB:=1
INCLUDEPATHS= \
-I"C:\boost-1.50.0-mgw" \
@@ -86,6 +87,18 @@ all: bitcoind.exe
test check: test_bitcoin.exe FORCE
test_bitcoin.exe
#
# LevelDB support
#
ifdef USE_LEVELDB
LIBS += $(CURDIR)/leveldb/libleveldb.a $(CURDIR)/leveldb/libmemenv.a
DEFS += $(addprefix -I,$(CURDIR)/leveldb/include) -DUSE_LEVELDB
DEFS += $(addprefix -I,$(CURDIR)/leveldb/helpers)
leveldb/libleveldb.a:
cd leveldb; make libleveldb.a libmemenv.a; cd ..
obj/db.o: leveldb/libleveldb.lib
endif
obj/%.o: %.cpp $(HEADERS)
g++ -c $(CFLAGS) -o $@ $<