ZIG := zig SRC = sleeptest.zig OUT = sleeptest .PHONY: clean all: $(OUT) $(OUT): $(SRC) $(ZIG) cc -Wall -s -o $(OUT) $(SRC) clean: rm -f $(OUT)