#!/bin/bashset -e OPTS="-Ideps -Ldeps/cryptopp -lcryptopp" if [ "$1" == "debug" ]; then echo debug c++ -Wall -g -O0 *.cpp $OPTS -o icetunnel2-debugelse c++ -Wall -DNDEBUG -O3 *.cpp $OPTS -o icetunnel2fi