Skip to content

Commit

Permalink
Add README.md and makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
paper42 committed Jul 10, 2020
1 parent 554c23d commit f4eefa6
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# OTP.py
dependencies: python3

# install
```
make install
```

# usage
create a GPG encrypted file `~/.otp/github.gpg` with content of the secret
12 changes: 12 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
PREFIX ?= /usr/local
BINDIR ?= $(PREFIX)/bin

all:

install:
install -D -m 755 $(DESTDIR)$(BINDIR)/otp

uninstall:
rm $(DESTDIR)$(BINDIR)/otp

.PHONY: all install uninstall

0 comments on commit f4eefa6

Please sign in to comment.