https://github.com/cran/Matrix
Raw File
Tip revision: d91a3f2149572d5e4801cb9d4c28d55ffd3642e8 authored by Martin Maechler on 22 March 2024, 09:08:25 UTC
version 1.7-0
Tip revision: d91a3f2
cleanup
#!/bin/sh

## INSTALL does not clean up after ./configure or in subdirectories of src/;
## we do not have a ./configure, hence we only need the following:

ssdir=SuiteSparse
for sslib in SuiteSparse_config CXSparse AMD COLAMD CAMD CCOLAMD CHOLMOD; do
	(cd src/${ssdir}/${sslib} && make clean)
done
back to top