swh:1:snp:8f1e2e25c69a6b8dab6131f36eff53a0c4582164
Raw File
Tip revision: 81b1a2b5011be045c271c6a168509ec90acff5af authored by Doug and Martin on 03 February 2010, 00:00:00 UTC
version 0.999375-35
Tip revision: 81b1a2b
cleanup
#!/bin/sh

# Cleans up after the auxiliary files that were created when installing
# the Matrix package (shamelessly taken from the XML source pkg)
#
echo "  Cleaning up after installing the Matrix package"

## No configure currently --> empty for now: not yet really needed
for f in config.log config.status config.cache ; do
  if test -w $f ; then
    rm -f $f
  fi
done

for D in `sed -n '/^SUBDIRS *= */s///p' src/Makevars`
do
 if test -d src/$D
 then (cd src/$D ; make clean )
 fi
done


back to top