mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-11 16:19:16 +05:00
16 lines
470 B
Bash
Executable File
16 lines
470 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -rf autom4te.cache aclocal.m4 configure make_config
|
|
find . -name "*~" -print -exec rm {} \;
|
|
find . -name "*.pyc" -print -exec rm {} \;
|
|
#exit
|
|
# ==================== ON SORT AVANT
|
|
|
|
find bin -name Makefile.in | xargs rm -f
|
|
find doc -name Makefile.in | xargs rm -f
|
|
find idl -name Makefile.in | xargs rm -f
|
|
find resources -name Makefile.in | xargs rm -f
|
|
find salome_adm -name Makefile.in | xargs rm -f
|
|
find src -name Makefile.in | xargs rm -f
|
|
rm -f Makefile.in
|