Mercurial > hg > audiodb
view libtests/clean.sh @ 679:047415d1805e
Make the python bindings compile again using the new hopsize stuff
It's not an ideal fix; it ties together the query and instance hops.
Nevertheless, building is better than not building.
author | mas01cr |
---|---|
date | Fri, 05 Mar 2010 16:01:22 +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