mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-07 22:04:03 -05:00
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:
14
Makefile
14
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)
|
||||
|
||||
Reference in New Issue
Block a user