diff --git a/Makefile b/Makefile index 9af6f2e..6dcf7c7 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,11 @@ all: - sudo gcc -lm fetchy.c -o /bin/fetchy + gcc -lm fetchy.c -o /bin/fetchy clean: - sudo rm fetchy + rm fetchy install: - sudo gcc -lm fetchy.c -o /bin/fetchy + gcc -lm fetchy.c -o /bin/fetchy uninstall: - sudo rm /bin/fetchy + rm /bin/fetchy