aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2012-09-03 04:43:01 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2012-09-03 05:25:35 +0200
commit8769aa6370cd6b4ebd7393c32519a04772f5bd29 (patch)
treef91f3de7355094b6900451c8eddeb8b0a972e057 /Makefile
parentSupport pass git (diff)
downloadpassword-store-8769aa6370cd6b4ebd7393c32519a04772f5bd29.tar.xz
password-store-8769aa6370cd6b4ebd7393c32519a04772f5bd29.zip
Make into a real project.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..7c78ed3
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+all:
+ @echo "Password store is a shell script, so there is nothing to do. Try \"make install\" instead."
+
+install:
+ @install -v src/password-store.sh /usr/bin/pass
+ @install -v man/pass.1 /usr/share/man/man1/pass.1
+ @install -v bash-completion/pass-bash-completion.sh /usr/share/bash-completion/pass
+
+uninstall:
+ @rm -vf /usr/bin/pass /usr/share/man/man1/pass.1 /usr/share/bash-completion/pass