mirror of
https://github.com/pret/pokeemerald.git
synced 2026-03-21 17:54:57 -05:00
9 lines
181 B
Bash
Executable File
9 lines
181 B
Bash
Executable File
#!/bin/sh
|
|
|
|
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
|