.PHONY: start test clean

start:
	lua src/main.lua

test:
	lua src/main.lua --test

clean:
	rm -f *.o *.so
