pokeemerald/build_tools.sh

9 lines
211 B
Bash
Raw Normal View History

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