diff options
author | Nils Schneider <nils.schneider@gmail.com> | 2011-09-27 20:16:07 +0200 |
---|---|---|
committer | Nils Schneider <nils.schneider@gmail.com> | 2011-09-30 20:00:22 +0200 |
commit | 6ccff2cbdebca38e4913b679784a4865edfbb12a (patch) | |
tree | e13e71eb80ffa412810edcae47eea4f2b86e5b2d /src/makefile.unix | |
parent | f4769e44a326f61bdf47fa39346e1293b97e31c4 (diff) |
remove cryptopp dependency, add simple unittest for SHA256Transform()
Diffstat (limited to 'src/makefile.unix')
-rw-r--r-- | src/makefile.unix | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/makefile.unix b/src/makefile.unix index 689c54d9d2..f9f03b3aa8 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -96,17 +96,12 @@ OBJS= \ obj/bitcoinrpc.o \ obj/script.o \ obj/util.o \ - obj/wallet.o \ - cryptopp/obj/sha.o \ - cryptopp/obj/cpu.o + obj/wallet.o all: bitcoind -cryptopp/obj/%.o: cryptopp/%.cpp - $(CXX) -c $(CFLAGS) -O3 -o $@ $< - obj/nogui/%.o: %.cpp $(HEADERS) $(CXX) -c $(CXXFLAGS) -o $@ $< @@ -124,5 +119,4 @@ clean: -rm -f obj/*.o -rm -f obj/nogui/*.o -rm -f obj/test/*.o - -rm -f cryptopp/obj/*.o -rm -f headers.h.gch |