Skip to content

Commit

Permalink
Updated Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
pons committed Apr 3, 2019
1 parent 2404361 commit a30141f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ SRC = Base58.cpp IntGroup.cpp main.cpp Random.cpp \
Timer.cpp Int.cpp IntMod.cpp Point.cpp SECP256K1.cpp \
Vanity.cpp GPU/GPUGenerate.cpp hash/ripemd160.cpp \
hash/sha256.cpp hash/sha512.cpp hash/ripemd160_sse.cpp \
hash/sha256_sse.cpp
hash/sha256_sse.cpp Bech32.cpp

OBJDIR = obj

Expand All @@ -18,15 +18,15 @@ OBJET = $(addprefix $(OBJDIR)/, \
IntMod.o Point.o SECP256K1.o Vanity.o GPU/GPUGenerate.o \
hash/ripemd160.o hash/sha256.o hash/sha512.o \
hash/ripemd160_sse.o hash/sha256_sse.o \
GPU/GPUEngine.o)
GPU/GPUEngine.o Bech32.o)

else

OBJET = $(addprefix $(OBJDIR)/, \
Base58.o IntGroup.o main.o Random.o Timer.o Int.o \
IntMod.o Point.o SECP256K1.o Vanity.o GPU/GPUGenerate.o \
hash/ripemd160.o hash/sha256.o hash/sha512.o \
hash/ripemd160_sse.o hash/sha256_sse.o)
hash/ripemd160_sse.o hash/sha256_sse.o Bech32.o)

endif

Expand Down

0 comments on commit a30141f

Please sign in to comment.