CC = gcc CFLAGS = -Wall -Wpedantic -ansi -pedantic-errors cat : main.o cfn.o cfp.o $(CC) $(CFLAGS) -o cat main.o cfn.o cfp.o clean : rm -f -- *.o cat