forked from seshasaibehara/CASMcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclean.sh
More file actions
executable file
·16 lines (13 loc) · 752 Bytes
/
clean.sh
File metadata and controls
executable file
·16 lines (13 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
# Remove all the generated things not removed by 'make clean'
set -v
set -e
# autotools generated things
find . -name .deps -prune -exec rm -rf {} \;
find . -name .libs -prune -exec rm -rf {} \;
find . -name *.os -exec rm -f {} \;
find . -name *.dirstamp -exec rm -f {} \;
rm -rf autom4te.cache libtool Makefile Makefile.in aclocal.m4 config.h config.h.in config.log config.status configure stamp-h1
rm -f build-aux/compile build-aux/config.guess build-aux/config.sub build-aux/depcomp build-aux/install-sh build-aux/ltmain.sh build-aux/m4/libtool.m4 build-aux/m4/ltoptions.m4 build-aux/m4/ltsugar.m4 build-aux/m4/ltversion.m4 build-aux/m4/lt~obsolete.m4 build-aux/missing build-aux/test-driver
# doxygen genrated things
rm -rf doc/html