Add Makefile

This commit is contained in:
Mateusz Ż 2019-02-17 12:57:31 +00:00
parent 0913a79a1b
commit 40716242c3
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```
## Installation
```sudo make install```
**OR**
Add ```kunst``` to a directory which is in you ```$PATH```
**OR**