master
sh 9 lines 166 Bytes
Raw
1 #!/bin/sh
2
3 if [ -n "${CFLAGS}" ]; then
4 echo "${CFLAGS}"
5 elif [ -n "${DEBUG_BUILD}" ]; then
6 echo "-Og -ggdb -pipe"
7 else
8 echo "-O2 -funroll-loops -pipe"
9 fi