Fix 'make' procedure bug: avoid 'no such file or directory' error messages

This commit is contained in:
vsr 2006-05-29 08:19:10 +00:00
parent ad59a9342b
commit 0371be0b56

View File

@ -16,7 +16,7 @@ VPATH=.:@srcdir@
docs:
cp -fr $(srcdir)/SMESH ./
-find $(PWD) -name CVS -exec rm -rf {} \;
-find $(PWD) -name CVS -prune -exec rm -rf {} \;
usr_docs: docs
@ -29,7 +29,7 @@ distclean: clean
install:
mkdir -p $(docdir)/gui
cp -rf SMESH $(docdir)/gui
-find $(PWD) -name CVS -exec rm -rf {} \;
-find $(PWD) -name CVS -prune -exec rm -rf {} \;
uninstall:
rm -rf $(docdir)/gui/SMESH