https://github.com/cran/Matrix
Raw File
Tip revision: 4bba53ef49f312c7b61ceb34d92b5a48a52c8dc3 authored by Martin Maechler on 12 September 2013, 00:00:00 UTC
version 1.0-14
Tip revision: 4bba53e
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