https://github.com/cran/Matrix
Raw File
Tip revision: ead38f310e2d067311ade71502df9840a374367e authored by Martin Maechler on 01 September 2016, 12:23:14 UTC
version 1.2-7.1
Tip revision: ead38f3
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