You've already forked trussed-totp-pc-tutorial
mirror of
https://github.com/trussed-dev/trussed-totp-pc-tutorial.git
synced 2026-03-11 16:31:27 -07:00
19 lines
358 B
Makefile
19 lines
358 B
Makefile
BINARY := trussed-totp-pc-tutorial
|
|
LABEL := alice@trussed.dev
|
|
SECRET := JBSWY3DPEHPK3PXPJBSWY3DPEHPK3PXP
|
|
|
|
register:
|
|
$(BINARY) register $(LABEL) $(SECRET)
|
|
|
|
register-dev:
|
|
cargo run -- register $(LABEL) $(SECRET)
|
|
|
|
authenticate:
|
|
$(BINARY) authenticate $(LABEL)
|
|
|
|
authenticate-dev:
|
|
cargo run -- authenticate $(LABEL)
|
|
|
|
install:
|
|
cargo install --path . --locked
|