fetchy/Makefile

12 lines
138 B
Makefile
Raw Normal View History

2021-05-03 21:46:56 +02:00
all:
2021-05-12 15:21:17 +02:00
gcc -lm fetchy.c -o /bin/fetchy
2021-05-03 21:46:56 +02:00
clean:
2021-05-12 15:21:17 +02:00
rm fetchy
2021-05-03 21:46:56 +02:00
install:
2021-05-12 15:24:08 +02:00
gcc -lm fetchy.c -o /bin/fetchy && fetchy
2021-05-03 21:46:56 +02:00
uninstall:
2021-05-12 15:21:17 +02:00
rm /bin/fetchy