fetchy/Makefile

12 lines
120 B
Makefile
Raw Normal View History

2021-05-03 21:46:56 +02:00
all:
gcc fetchy.c -o /bin/fetchy
clean:
rm fetchy
install:
gcc fetchy.c -o /bin/fetchy
uninstall:
rm /bin/fetchy