CC=gcc CFLAGS=-Wall -ansi -pedantic OBJ=hello.o OUT=hello all: $(OUT) $(OUT): $(OBJ) $(CC) $(OBJ) -o $@ clean distclean: rm -f $(OBJ) $(OUT)