CC ?= /usr/bin/gcc sleepsh: $(CC) -o sleepsh -O3 main.c main.c: sleepsh .PHONY: all build clean all: sleepsh build: sleepsh clean: rm -f sleepsh