CC := gcc SRC = sleeptest.c OUT = sleeptest .PHONY: clean all: $(OUT) $(OUT): $(SRC) $(CC) -Wall -s -o $(OUT) $(SRC) clean: rm -f $(OUT)