diff options
| author | Nils Schneider <[email protected]> | 2011-09-27 20:16:07 +0200 |
|---|---|---|
| committer | Nils Schneider <[email protected]> | 2011-09-30 20:00:22 +0200 |
| commit | 6ccff2cbdebca38e4913b679784a4865edfbb12a (patch) | |
| tree | e13e71eb80ffa412810edcae47eea4f2b86e5b2d /src/makefile.osx | |
| parent | Merge pull request #524 from sipa/signandverif (diff) | |
| download | discoin-6ccff2cbdebca38e4913b679784a4865edfbb12a.tar.xz discoin-6ccff2cbdebca38e4913b679784a4865edfbb12a.zip | |
remove cryptopp dependency, add simple unittest for SHA256Transform()
Diffstat (limited to 'src/makefile.osx')
| -rw-r--r-- | src/makefile.osx | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/makefile.osx b/src/makefile.osx index 1d1d6b7b7..f9de4d709 100644 --- a/src/makefile.osx +++ b/src/makefile.osx @@ -64,9 +64,7 @@ OBJS= \ obj/bitcoinrpc.o \ obj/script.o \ obj/util.o \ - obj/wallet.o \ - cryptopp/obj/sha.o \ - cryptopp/obj/cpu.o + obj/wallet.o ifdef USE_UPNP LIBS += $(DEPSDIR)/lib/libminiupnpc.a @@ -76,9 +74,6 @@ endif all: bitcoind -cryptopp/obj/%.o: cryptopp/%.cpp - $(CXX) -c $(CFLAGS) -O3 -DCRYPTOPP_DISABLE_ASM -o $@ $< - obj/nogui/%.o: %.cpp $(HEADERS) $(CXX) -c $(CFLAGS) -o $@ $< @@ -96,4 +91,3 @@ clean: -rm -f obj/*.o -rm -f obj/nogui/*.o -rm -f obj/test/*.o - -rm -f cryptopp/obj/*.o |