summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 10 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5db24a3..77aabe8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,2 +1,11 @@
1install: 1BINDIR = /usr/local/bin
2BINARIES = sliceweasel
3SUDO != [ "$$(id -u)" = 0 ] || echo sudo
4
5.PHONY: install install-bin
6
7install: install-bin
2 sh your-fired.sh install 8 sh your-fired.sh install
9
10install-bin:
11 $(SUDO) install $(BINARIES) -t $(BINDIR)