summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndrew Cady <d@cryptonomic.net>2021-10-19 07:44:10 -0400
committerAndrew Cady <d@cryptonomic.net>2021-10-19 07:44:10 -0400
commitcdca287a2d0b9941acafe1629ef1d1ee4285e95b (patch)
treedb63eee8696892f931328290da1899476fdd3787 /Makefile
parentcdcd5bc4b5722fff215d69514ab35fe687ba7850 (diff)
make install will install sliceweasel
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)