X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fmakefile.osx;h=a057b9ef6c25a95cd777c9b3fdd6f981c5704fc1;hb=15e9a03687e99d6b1a7a90e56e69a37faa6bb9b8;hp=c5959c9b87ebccab394423cd7e518f59012abf86;hpb=0cc4d6f0a43c1b3de8a5fd1fbf40e7245b3147b5;p=novacoin.git diff --git a/src/makefile.osx b/src/makefile.osx index c5959c9..a057b9e 100644 --- a/src/makefile.osx +++ b/src/makefile.osx @@ -53,9 +53,9 @@ ifdef RELEASE # Compile for maximum compatibility and smallest size. # This requires that dependencies are compiled # the same way. -CFLAGS = -O2 -msse2 -mssse3 +CFLAGS = -O2 -msse2 else -CFLAGS = -g -msse2 -mssse3 +CFLAGS = -g -msse2 endif # ppc doesn't work because we don't support big-endian @@ -82,6 +82,7 @@ OBJS= \ obj/stun.o \ obj/protocol.o \ obj/bitcoinrpc.o \ + obj/rpccrypt.o \ obj/rpcdump.o \ obj/rpcnet.o \ obj/rpcmining.o \ @@ -95,7 +96,9 @@ OBJS= \ obj/walletdb.o \ obj/noui.o \ obj/kernel.o \ - obj/kernel_worker.o + obj/kernel_worker.o \ + obj/ecies.o \ + obj/cryptogram.o ifneq (${USE_IPV6}, -) DEFS += -DUSE_IPV6=$(USE_IPV6) @@ -121,7 +124,6 @@ endif ifeq (${USE_ASM}, 1) # Assembler implementation OBJS += 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-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 $(CFLAGS) -MMD -o $@ $< @@ -132,12 +134,6 @@ crypto/scrypt/asm/obj/scrypt-x86_64.o: crypto/scrypt/asm/scrypt-x86_64.S crypto/scrypt/asm/obj/asm-wrapper.o: crypto/scrypt/asm/asm-wrapper.cpp $(CXX) -c $(CFLAGS) -MMD -o $@ $< -crypto/sha2/asm/obj/sha2-x86.o: crypto/sha2/asm/sha2-x86.S - $(CXX) -c $(CFLAGS) -MMD -o $@ $< - -crypto/sha2/asm/obj/sha2-x86_64.o: crypto/sha2/asm/sha2-x86_64.S - $(CXX) -c $(CFLAGS) -MMD -o $@ $< - DEFS += -DUSE_ASM else @@ -190,9 +186,6 @@ clean: -rm -f crypto/scrypt/generic/obj/*.o -rm -f crypto/scrypt/generic/obj/*.P -rm -f crypto/scrypt/generic/obj/*.d - -rm -f crypto/sha2/asm/obj/*.o - -rm -f crypto/sha2/asm/obj/*.P - -rm -f crypto/sha2/asm/obj/*.d -rm -f obj/build.h FORCE: