pokeemerald/build_tools.sh

9 lines
211 B
Bash
Raw Normal View History

2017-12-03 19:42:55 -06:00
#!/bin/sh
2019-08-15 15:17:13 -04:00
2019-08-27 09:15:44 -04:00
echo "This script is deprecated. Next time, run \"make tools\" instead."
2019-08-15 15:17:13 -04:00
for dname in tools/*; do
2019-08-27 09:15:44 -04:00
if [ -f ${dname}/Makefile ]; then
make -C ${dname} CXX=${1:-g++} --no-print-directory
2019-08-15 15:17:13 -04:00
fi
done