# build main
build:
	cc *.c -o main

# test everything
test-all: build
	./test --all

# run a specific test
test:
	./test --test $(TEST)
