pokeemerald/build_tools.sh

9 lines
181 B
Bash
Raw Normal View History

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