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