.PHONY: build clean
build:
	mkdir -p build
	cd build && cmake .. && make -j$$(nproc)
clean:
	rm -rf build Release/lpr-structured-demo
