Ver Fonte

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.
Bob Summerwill há 2 anos atrás
pai
commit
bc5e756770
1 ficheiros alterados com 7 adições e 7 exclusões
  1. 7 7
      Makefile

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