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