pinout.vvzero.com/make_all.sh

8 lines
113 B
Bash
Raw Normal View History

2015-11-18 21:16:39 +08:00
#!/bin/bash
for d in src/??; do
if [ -d $d ]; then
l=$(basename $d)
make LANG=$l
fi
done