all repos — pw @ 34e59589cb6077fd56556b489342bd36f7e11c4b

minimal password store

Create Makefile

Signed-off-by: Anirudh Oppiliappan <x@icyphox.sh>
Anirudh Oppiliappan x@icyphox.sh
Sun, 17 Nov 2019 15:41:05 +0530
commit

34e59589cb6077fd56556b489342bd36f7e11c4b

parent

d8d765d093c2276153faa451fcf67b929cdb43d2

1 files changed, 7 insertions(+), 0 deletions(-)

jump to
A Makefile

@@ -0,0 +1,7 @@

+PREFIX ?= /usr + +install: + @install -Dm755 pw $(DESTDIR)$(PREFIX)/bin/pw + +uninstall: + @rm -f $(DESTDIR)$(PREFIX)/bin/pw