aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorch1p <me@ch1p.com>2020-12-10 16:33:57 +0300
committerch1p <me@ch1p.com>2020-12-10 16:33:57 +0300
commit0c59dc2354077b038bbe8852135e0ce11d3f0ff6 (patch)
tree409d0c7f93491b63ec01bd540caa8b23c120ce52
parent418727e513a9a01f5e62e2299b10f7c0aedbd7ba (diff)
add Makefile
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..360b7c5
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+PREFIX = /usr/local
+INSTALL = /usr/bin/env install
+
+all:
+ @echo "run \"make install\" to install to $(PREFIX)"
+
+install:
+ $(INSTALL) swap_workspaces $(PREFIX)/bin
+
+.PHONY: all install