Merge pull request #5 from mateossh/makefile
Add new installation method - Makefile
This commit is contained in:
commit
24ece3f9dd
2 changed files with 17 additions and 0 deletions
13
Makefile
Normal file
13
Makefile
Normal file
|
@ -0,0 +1,13 @@
|
|||
DEST ?= /usr/bin
|
||||
|
||||
all:
|
||||
@echo Run \'make install\' to install kunst on your device
|
||||
|
||||
install:
|
||||
@cp kunst $(DEST)/kunst
|
||||
@chmod 755 $(DEST)/kunst
|
||||
@echo Kunst has been installed on your device
|
||||
|
||||
uninstall:
|
||||
@rm -rf $(DEST)/kunst
|
||||
@echo Kunst has been removed from your device
|
|
@ -18,6 +18,10 @@
|
|||
- ```mpc```
|
||||
|
||||
## Installation
|
||||
```sudo make install```
|
||||
|
||||
**OR**
|
||||
|
||||
Add ```kunst``` to a directory which is in you ```$PATH```
|
||||
|
||||
**OR**
|
||||
|
|
Loading…
Add table
Reference in a new issue