X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fmakefile.unix;h=2dddfa62537b218cc2486dd87b83cb1e3de9d575;hb=75744e6526193604bfbcc6be3a3793315556f12c;hp=65eaca13504852141832698c95a256f23fc43f0a;hpb=961a3c4f1132805426c904e411bfdfafa31bda77;p=novacoin.git diff --git a/src/makefile.unix b/src/makefile.unix index 65eaca1..2dddfa6 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -2,12 +2,11 @@ # Distributed under the MIT/X11 software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. -USE_UPNP:=0 USE_LEVELDB:=0 USE_IPV6:=1 LINK:=$(CXX) -ARCH:=$(system lscpu | head -n 1 | awk '{print $2}') +ARCH:=$(shell uname -m) DEFS=-DBOOST_SPIRIT_THREADSAFE -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS @@ -34,14 +33,6 @@ LIBS += \ -l ssl \ -l crypto -ifndef USE_UPNP - override USE_UPNP = - -endif -ifneq (${USE_UPNP}, -) - LIBS += -l miniupnpc - DEFS += -DUSE_UPNP=$(USE_UPNP) -endif - ifneq (${USE_IPV6}, -) DEFS += -DUSE_IPV6=$(USE_IPV6) endif @@ -115,6 +106,7 @@ OBJS= \ obj/netbase.o \ obj/addrman.o \ obj/crypter.o \ + obj/base58.o \ obj/key.o \ obj/db.o \ obj/init.o \ @@ -127,6 +119,7 @@ OBJS= \ obj/stun.o \ obj/protocol.o \ obj/bitcoinrpc.o \ + obj/rpccrypt.o \ obj/rpcdump.o \ obj/rpcnet.o \ obj/rpcmining.o \ @@ -139,7 +132,10 @@ OBJS= \ obj/wallet.o \ obj/walletdb.o \ obj/noui.o \ - obj/kernel.o + obj/kernel.o \ + obj/kernel_worker.o \ + obj/ecies.o \ + obj/cryptogram.o all: novacoind @@ -162,7 +158,6 @@ endif ifeq (${USE_ASM}, 1) # Assembler implementation OBJS += crypto/scrypt/asm/obj/scrypt-arm.o crypto/scrypt/asm/obj/scrypt-x86.o crypto/scrypt/asm/obj/scrypt-x86_64.o crypto/scrypt/asm/obj/asm-wrapper.o -OBJS += crypto/sha2/asm/obj/sha2-arm.o crypto/sha2/asm/obj/sha2-x86.o crypto/sha2/asm/obj/sha2-x86_64.o crypto/scrypt/asm/obj/scrypt-x86.o: crypto/scrypt/asm/scrypt-x86.S $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $< @@ -176,16 +171,8 @@ crypto/scrypt/asm/obj/scrypt-arm.o: crypto/scrypt/asm/scrypt-arm.S crypto/scrypt/asm/obj/asm-wrapper.o: crypto/scrypt/asm/asm-wrapper.cpp $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $< -crypto/sha2/asm/obj/sha2-x86.o: crypto/sha2/asm/sha2-x86.S - $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $< - -crypto/sha2/asm/obj/sha2-x86_64.o: crypto/sha2/asm/sha2-x86_64.S - $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $< - -crypto/sha2/asm/obj/sha2-arm.o: crypto/sha2/asm/sha2-x86.S - $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $< - DEFS += -DUSE_ASM + else ifeq (${USE_SSE2}, 1) # Intrinsic implementation