CC=clang CFLAGS=-Wall .PHONY: all clean all: something something: something.c $(CC) $(CFLAGS) something.c -o something clean: @rm -f something