From f62afcca8e21b0c76edbcf532020b865d296b85e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=88=D0=BE=D0=B2=D0=B0=D0=BD=20=D0=82=D0=BE=D0=BA=D0=B8?= =?UTF-8?q?=D1=9B-=D0=A8=D1=83=D0=BC=D0=B0=D1=80=D0=B0=D1=86?= Date: Sun, 9 May 2021 11:06:29 +0000 Subject: [PATCH] Update Makefile --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index c455040..9af6f2e 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,11 @@ all: - gcc fetchy.c -o /bin/fetchy + sudo gcc -lm fetchy.c -o /bin/fetchy clean: - rm fetchy + sudo rm fetchy install: - gcc fetchy.c -o /bin/fetchy + sudo gcc -lm fetchy.c -o /bin/fetchy uninstall: - rm /bin/fetchy + sudo rm /bin/fetchy