From bc5e75677085bdf6044e2fddb3c375afa5ade1a8 Mon Sep 17 00:00:00 2001 From: Bob Summerwill Date: Wed, 6 Sep 2023 03:58:39 -0700 Subject: [PATCH] Fixed for broken "make install" following recent refactorings (#211) * Fixed for broken "make install" following recent refactorings. A mixture of typos and irregular nesting for genev executables. * Same change required for tau-cli and taud. * Fixed accidental "echo" prefix which I had been debugging with. This PR will need squashing, of course. --- Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index efd9d8f0f..41e9304a9 100644 --- a/Makefile +++ b/Makefile @@ -18,11 +18,11 @@ BINS = \ darkfid2 \ faucetd \ darkirc \ - genev \ - genevd \ + genev/genev-cli \ + genev/genevd \ lilith \ - tau \ - taud \ + tau/tau-cli \ + tau/taud \ vanityaddr # ZK proofs to compile with zkas @@ -116,16 +116,16 @@ distclean: clean $(CARGO) clean rm -rf target -install: all +install: $(BINS) @for i in $(BINS); \ do \ - $(MAKE) -C $$i install \ + $(MAKE) -C bin/$$i install; \ done; uninstall: for i in $(BINS); \ do \ - $(MAKE) -C $$i uninstall \ + $(MAKE) -C bin/$$i uninstall; \ done; .PHONY: all contracts check fix fmt clippy rustdoc test coverage distclean clean install uninstall $(BINS)