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.
This commit is contained in:
Bob Summerwill
2023-09-06 03:58:39 -07:00
committed by GitHub
parent b41462d323
commit bc5e756770

View File

@@ -18,11 +18,11 @@ BINS = \
darkfid2 \ darkfid2 \
faucetd \ faucetd \
darkirc \ darkirc \
genev \ genev/genev-cli \
genevd \ genev/genevd \
lilith \ lilith \
tau \ tau/tau-cli \
taud \ tau/taud \
vanityaddr vanityaddr
# ZK proofs to compile with zkas # ZK proofs to compile with zkas
@@ -116,16 +116,16 @@ distclean: clean
$(CARGO) clean $(CARGO) clean
rm -rf target rm -rf target
install: all install: $(BINS)
@for i in $(BINS); \ @for i in $(BINS); \
do \ do \
$(MAKE) -C $$i install \ $(MAKE) -C bin/$$i install; \
done; done;
uninstall: uninstall:
for i in $(BINS); \ for i in $(BINS); \
do \ do \
$(MAKE) -C $$i uninstall \ $(MAKE) -C bin/$$i uninstall; \
done; done;
.PHONY: all contracts check fix fmt clippy rustdoc test coverage distclean clean install uninstall $(BINS) .PHONY: all contracts check fix fmt clippy rustdoc test coverage distclean clean install uninstall $(BINS)