Merge pull request #5 from mateossh/makefile
Add new installation method - Makefile
This commit is contained in:
commit
24ece3f9dd
|
@ -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
|
Loading…
Reference in New Issue