diff --git a/Makefile b/Makefile index ee5d34a..788f0ef 100644 --- a/Makefile +++ b/Makefile @@ -3,5 +3,11 @@ defualt: all all: gcc -O2 morse.c -o morse +install: + cp morse ~/.local/bin/ + +uninstll: + rm ~/.local/bin/morse + clean: rm morse