PREFIX=~/.local G= O=-Ofast CFLAGS=$(O) $(G) -Wall -Wextra -Werror wheres: wheres.c cc $(CFLAGS) $^ -o $@ install: wheres cp wheres $(PREFIX)/bin uninstall: rm -f $(PREFIX)/bin/wheres clean: rm -f wheres