File: cleanup

package info (click to toggle)
rquantlib 0.4.26-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,312 kB
  • sloc: cpp: 3,560; sh: 69; makefile: 6; ansic: 4
file content (11 lines) | stat: -rwxr-xr-x 323 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

Rscript -e 'library(Rcpp); compileAttributes(".")'

rm -rf config.log config.status confdefs.h autom4te.cache \
    src/Makevars src/libRQuantLib.a src/libRQuantLib.def src/*.o src/*.so src/symbols.rds \
    RcppSrc/*.a RcppSrc/*.o RcppSrc/config.* inst/Rcpp-version.txt 

find . -name \*~ | xargs rm -f

exit 0