summaryrefslogtreecommitdiff
path: root/build_tools.sh
blob: 93f6065be4d60c062468112cf0dc262fc2ccd2f2 (plain)
1
2
3
4
5
6
7
8
#!/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