dspfrivs/build.sh

11 lines
132 B
Bash
Executable File

#!/bin/sh
if ! [ -d target ]; then
mkdir target
fi
for file in src/*.rs; do
echo $file
rustc -O $file --out-dir ./target/
done