code / wheres

Lines496 YAML273 C178 Markdown33 make12
(16 lines)
1 PREFIX=~/.local
2 G=
3 O=-Ofast
4 CFLAGS=$(O) $(G) -Wall -Wextra -Werror
6 wheres: wheres.c
7 cc $(CFLAGS) $^ -o $@
9 install: wheres
10 cp wheres $(PREFIX)/bin
12 uninstall:
13 rm -f $(PREFIX)/bin/wheres
15 clean:
16 rm -f wheres