aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-12-05 13:05:56 +1300
committerTom Ryder <tom@sanctum.geek.nz>2015-12-05 13:06:49 +1300
commit531c7440adb7f5fb295458dca6ba03e6f08fa9a2 (patch)
tree400620de960270a93107672ff1a8f78b26cba41e /Makefile
parentMove scripts into bin subdir (diff)
downloadmpdlrc-531c7440adb7f5fb295458dca6ba03e6f08fa9a2.tar.gz
mpdlrc-531c7440adb7f5fb295458dca6ba03e6f08fa9a2.zip
Add a Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..01624ec
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+.PHONY: all install
+
+PREFIX := /usr/local
+
+all :
+
+install :
+ install -m 0755 bin/* "$(PREFIX)"/bin
+