mirror of
https://github.com/resetes12/pokeemerald
synced 2025-10-06 00:12:45 +02:00
9 lines
211 B
Bash
Executable File
9 lines
211 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "This script is deprecated. Next time, run \"make tools\" instead."
|
|
for dname in tools/*; do
|
|
if [ -f ${dname}/Makefile ]; then
|
|
make -C ${dname} CXX=${1:-g++} --no-print-directory
|
|
fi
|
|
done
|