view libtests/clean.sh @ 388:f6aa8c5cd865 api-inversion

Preparation for more complex inversion. Add a file descriptor and a DB Header struct pointer into the audioDB structure. (The structure description that is visible in audioDB_API.h should never be exposed to code _using_ the library; for that, the adb_t structure should be completely opaque, only ever passed around to API functions. For actually _implementing_ the library, though, of course we need access to our own internals...)
author mas01cr
date Mon, 24 Nov 2008 11:12:57 +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