fetchy/Makefile

13 lines
138 B
Makefile

all:
gcc fetchy.c -o fetchy
clean:
rm fetchy
install:
gcc fetchy.c -o fetchy
mv -f fetchy /usr/bin/
uninstall:
rm /usr/bin/fetchy