CFLAGS = -Wall -Wextra -Werror

catch-two: catch-two.c
	$(CC) -o $@ $(CFLAGS) $^

clean:
	rm -f catch-two

.PHONY: clean
