diff options
author | Bryson Steck <brysonsteck@protonmail.com> | 2022-09-07 00:32:07 -0600 |
---|---|---|
committer | Bryson Steck <brysonsteck@protonmail.com> | 2022-09-07 00:32:07 -0600 |
commit | 2936e9ab303361cfe45602da555b2fd214fcd8fc (patch) | |
tree | 4b4132604a52e4cde0bcfee5062af377f9fc4658 /Makefile | |
download | listen-2936e9ab303361cfe45602da555b2fd214fcd8fc.tar listen-2936e9ab303361cfe45602da555b2fd214fcd8fc.tar.gz listen-2936e9ab303361cfe45602da555b2fd214fcd8fc.tar.bz2 |
init
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..de09631 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +PREFIX = /usr/local + +all: + +install: + mkdir -p ${PREFIX}/bin + cp -f listen ${PREFIX}/bin + chmod 755 ${PREFIX}/bin/listen + |