mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-10 10:15:18 +00:00
9 lines
147 B
Makefile
9 lines
147 B
Makefile
|
all: rebuild
|
||
|
|
||
|
.PHONY: rebuild
|
||
|
rebuild: make-db.go
|
||
|
for stage in 1 2 3 4; do \
|
||
|
rm -fr db-stage-$$stage && \
|
||
|
go run make-db.go $$stage; \
|
||
|
done
|