.PHONY: clean

runner: runner.c total.c
	gcc -Wall -Wextra -std=c2x -pedantic -o $@ $^

clean:
	rm -f runner
