CC = gcc
CFLAGS = -ansi -pedantic -pedantic-errors -Wall -Werror -Wextra
SRC = cat.c

all:
	$(CC) $(CFLAGS) $(SRC) -o cat

clean:
	rm cat