Skip to content

Commit

Permalink
Fixed for broken "make install" following recent refactorings. A mixt…
Browse files Browse the repository at this point in the history
…ure of typos and irregular nesting for genev executables.
  • Loading branch information
bobsummerwill committed Sep 5, 2023
1 parent 546e5a3 commit 84be22a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ BINS = \
darkfid2 \
faucetd \
darkirc \
genev \
genevd \
genev/genev-cli \
genev/genevd \
lilith \
tau \
taud \
Expand Down Expand Up @@ -116,16 +116,16 @@ distclean: clean
$(CARGO) clean
rm -rf target

install: all
install: $(BINS)
@for i in $(BINS); \
do \
$(MAKE) -C $$i install \
echo $(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)

0 comments on commit 84be22a

Please sign in to comment.