mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01: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
|