https://github.com/cran/Matrix
Raw File
Tip revision: 8f0083c101114457cf9f9a00dc7cd8420b4c89a2 authored by Martin Maechler on 11 January 2024, 17:50:15 UTC
version 1.6-5
Tip revision: 8f0083c
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:

sslib="SuiteSparse_config AMD COLAMD CHOLMOD"
for d in ${sslib}; do
	(cd src/${d} && make clean)
done
back to top