Revision 6e3a285a54029b0dd2f4c00e0e394a9000223e52 authored by Martin Maechler on 02 May 2016, 15:51:43 UTC, committed by cran-robot on 02 May 2016, 15:51:43 UTC
1 parent 0a1667f
Raw File
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