1
0
mirror of https://github.com/Ninjdai1/pokeemerald.git synced 2025-01-16 08:32:10 +01:00

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