Skip to content

Commit

Permalink
Makefile: add install target to copy K files
Browse files Browse the repository at this point in the history
  • Loading branch information
sskeirik committed Aug 13, 2020
1 parent e0f410b commit ad1fcb6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ plugin-c/blockchain.o: plugin-c/proto/msg.pb.h
%.pb.h: %.proto
protoc --cpp_out=. $<

.PHONY: clean
.PHONY: install clean
install:
@mkdir -p $(PREFIX)
cp plugin/* $(PREFIX)

clean:
rm -rf */*.o */*/*.o plugin/proto/*.pb.* build deps/libff/build
cd deps/secp256k1 && $(MAKE) clean
Expand Down

0 comments on commit ad1fcb6

Please sign in to comment.