From 01d356ace1169007f3268f0491828f087918162a Mon Sep 17 00:00:00 2001 From: Tait Hoyem <44244401+TTWNO@users.noreply.github.com> Date: Mon, 10 Jun 2019 16:27:42 +0000 Subject: [PATCH] Add install and uninstall --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) 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