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