Files
2020-06-09 22:42:32 +02:00

10 lines
154 B
Makefile

.PHONY: build run
build: a.out
a.out:
cc prefix_match.c test/main.c test/test_framework.c -I. -Itest -Wall -Wextra -pedantic -Og
run: a.out
./a.out