Skip to content

Commit

Permalink
-Added Makefile for building addrgen
Browse files Browse the repository at this point in the history
  • Loading branch information
brichard19 committed Dec 27, 2018
1 parent 01c5c37 commit 234bb0d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions AddrGen/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
CPPSRC:=$(wildcard *.cpp)

all:
${CXX} -o addrgen.bin ${CPPSRC} ${INCLUDE} -I${CUDA_INCLUDE} ${CXXFLAGS} ${LIBS} -laddressutil -lsecp256k1 -lcryptoutil -lsecp256k1 -lutil -lcmdparse
mkdir -p $(BINDIR)
cp addrgen.bin $(BINDIR)/addrgen


clean:
rm -rf addrgen.bin

0 comments on commit 234bb0d

Please sign in to comment.