From 16ab575e6330f05a8d93350a5de6b5d5ec0ea8d6 Mon Sep 17 00:00:00 2001 From: "Haoran S. Diao" <0@hairydiode.xyz> Date: Mon, 3 Feb 2020 16:15:21 -0800 Subject: Added install and remove make targets --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index b974136..3931f9b 100644 --- a/Makefile +++ b/Makefile @@ -1,2 +1,6 @@ 0x800: main.c gcc main.c -o 0x800 +install: 0x800 + cp 0x800 /usr/bin/0x800 +remove: + rm /usr/bin/0x800 -- cgit v1.1