Replace Makefile
This commit is contained in:
parent
b34ba4e25d
commit
6646b22dfe
1 changed files with 4 additions and 4 deletions
8
Makefile
8
Makefile
|
@ -1,11 +1,11 @@
|
||||||
all:
|
all:
|
||||||
sudo gcc -lm fetchy.c -o /bin/fetchy
|
gcc -lm fetchy.c -o /bin/fetchy
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
sudo rm fetchy
|
rm fetchy
|
||||||
|
|
||||||
install:
|
install:
|
||||||
sudo gcc -lm fetchy.c -o /bin/fetchy
|
gcc -lm fetchy.c -o /bin/fetchy && fetchy
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
sudo rm /bin/fetchy
|
rm /bin/fetchy
|
||||||
|
|
Loading…
Add table
Reference in a new issue