CPP := g++ SRC = sleeptest.cpp OUT = sleeptest .PHONY: clean all: $(OUT) $(OUT): $(SRC) $(CPP) -Wall -s -o $(OUT) $(SRC) clean: rm -f $(OUT)