fetchy/Makefile

12 lines
132 B
Makefile

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