Mercurial > hg > audiodb
view libtests/clean.sh @ 394:64b2bf35d30b api-inversion
Compile the test files with -g.
This gives me a chance to use watchpoints and similar tricks to find out
how amusingly I have messed up when making my crazy modifications to the
structure of the code...
author | mas01cr |
---|---|
date | Tue, 25 Nov 2008 16:41:00 +0000 |
parents | cd63493c32a9 |
children |
line wrap: on
line source
#! /bin/sh for file in [0-9][0-9][0-9][0-9]*; do if [ -d ${file} ]; then echo Cleaning ${file} rm -f ${file}/test* (cd ${file} && make -f ../libtest.mk clean >/dev/null 2>&1) if [ -f ${file}/clean.sh ]; then (cd ${file} && sh ./clean.sh) fi fi done