Merge pull request #5 from mateossh/makefile

Add new installation method - Makefile
This commit is contained in:
Siddharth Dushantha 2019-02-17 17:57:08 +01:00 committed by GitHub
commit 24ece3f9dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 0 deletions

13
Makefile Normal file
View 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

View File

@ -18,6 +18,10 @@
- ```mpc``` - ```mpc```
## Installation ## Installation
```sudo make install```
**OR**
Add ```kunst``` to a directory which is in you ```$PATH``` Add ```kunst``` to a directory which is in you ```$PATH```
**OR** **OR**