all:
	g++ -O2 -c testabt.c -o testabt.o
	g++ testabt.o alva_api.a -o testabt

clean:
	rm -f testabt testabt.o

