CFLAGS = -Wall -Wextra -Werror

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

clean:
	rm -f catch-sigint

.PHONY: clean
