fetchy/Makefile

13 lines
135 B
Makefile
Raw Normal View History

2020-12-13 02:03:40 +01:00
all:
gcc fetchy.c -o fetchy
clean:
rm fetchy
install:
gcc fetchy.c -o fetchy
mv fetchy /usr/bin/
uninstall:
rm /usr/bin/fetchy