You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.6 KiB
69 lines
1.6 KiB
# 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. |
|
|
|
|
|
WXLIBS=$(shell wx-config --debug=yes --libs --static) |
|
WXFLAGS=$(shell wx-config --debug=yes --cppflags) |
|
|
|
LIBPATHS= \ |
|
-L"/usr/local/lib" |
|
|
|
LIBS= \ |
|
-Wl,-Bstatic \ |
|
-l boost_system \ |
|
-l boost_filesystem \ |
|
-l boost_program_options \ |
|
-l boost_thread \ |
|
-l db_cxx \ |
|
-l crypto \ |
|
-Wl,-Bdynamic \ |
|
-l gthread-2.0 |
|
|
|
DEFS=-D__WXGTK__ -DNOPCH |
|
DEBUGFLAGS=-g -D__WXDEBUG__ |
|
CFLAGS=-O2 -Wno-invalid-offsetof -Wformat $(DEBUGFLAGS) $(DEFS) |
|
HEADERS=headers.h strlcpy.h serialize.h uint256.h util.h key.h bignum.h base58.h \ |
|
script.h db.h net.h irc.h main.h rpc.h uibase.h ui.h noui.h init.h |
|
|
|
OBJS= \ |
|
obj/util.o \ |
|
obj/script.o \ |
|
obj/db.o \ |
|
obj/net.o \ |
|
obj/irc.o \ |
|
obj/main.o \ |
|
obj/rpc.o \ |
|
obj/init.o \ |
|
cryptopp/obj/sha.o \ |
|
cryptopp/obj/cpu.o |
|
|
|
|
|
all: bitcoin |
|
|
|
|
|
headers.h.gch: headers.h $(HEADERS) |
|
g++ -c $(CFLAGS) $(WXFLAGS) -DGUI -o $@ $< |
|
|
|
obj/%.o: %.cpp $(HEADERS) headers.h.gch |
|
g++ -c $(CFLAGS) $(WXFLAGS) -DGUI -o $@ $< |
|
|
|
cryptopp/obj/%.o: cryptopp/%.cpp |
|
g++ -c $(CFLAGS) -O3 -DCRYPTOPP_DISABLE_SSE2 -o $@ $< |
|
|
|
bitcoin: $(OBJS) obj/ui.o obj/uibase.o |
|
g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ $(WXLIBS) $(LIBS) |
|
|
|
|
|
obj/nogui/%.o: %.cpp $(HEADERS) |
|
g++ -c $(CFLAGS) -o $@ $< |
|
|
|
bitcoind: $(OBJS:obj/%=obj/nogui/%) |
|
g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS) |
|
|
|
|
|
clean: |
|
-rm -f obj/*.o |
|
-rm -f obj/nogui/*.o |
|
-rm -f cryptopp/obj/*.o |
|
-rm -f headers.h.gch
|
|
|