@echo off echo Building for Windows... cargo build --release echo Building for Linux... cargo zigbuild --release --target x86_64-unknown-linux-gnu echo Copy to bin... copy target\release\labast.exe bin\ /Y copy target\x86_64-unknown-linux-gnu\release\labast bin\ /Y echo Done!