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 \
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)