all: test

tests/main: tests/main.c
	cc $< -g -o tests/main

.PHONY: test
test: tests/main
	cargo test

.PHONY: test
test-v: tests/main
	RUST_LOG=gdb_mi=trace cargo test
