fetchy/Makefile

12 lines
148 B
Makefile

all:
sudo gcc -lm fetchy.c -o /bin/fetchy
clean:
sudo rm fetchy
install:
sudo gcc -lm fetchy.c -o /bin/fetchy
uninstall:
sudo rm /bin/fetchy