summaryrefslogtreecommitdiff
path: root/doc/aapl/check_ex_compile
blob: de4a23c4d8c367c9f67142e79ef8fc3e63474749 (plain)
1
2
3
4
5
6
7
#!/bin/bash
#

for fn in ex_*.cpp; do
	( set -x; g++ -Wall -I../aapl -o tmp.out $fn; )
done
rm tmp.out