fetchy/Makefile

12 lines
120 B
Makefile
Raw Normal View History

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