has been renamed to AM_DEFAULT_INCLUDES, to avoid impinging on the user's
namespace. Do not override this variable in your Makefiles!
+* The Automake-generated clean targets do not exit successfully anymore if
+ an error occurs while removing a file or directory.
+
-----
Copyright (C) 2012 Free Software Foundation, Inc.
## You should have received a copy of the GNU General Public License
## along with this program. If not, see <http://www.gnu.org/licenses/>.
-.am.clean-cmd.f = $(if $(strip $1),-rm -f $(strip $1))
-.am.clean-cmd.d = $(if $(strip $1),-rm -rf $(strip $1))
+.am.clean-cmd.f = $(if $(strip $1),rm -f $(strip $1))
+.am.clean-cmd.d = $(if $(strip $1),rm -rf $(strip $1))
am__mostlyclean_files += $(MOSTLYCLEANFILES)
am__clean_files += $(CLEANFILES)
## used to do this, and it's not unreasonable to expect user-defined
## rules might do that as well).
distclean:
- -rm -f %MAKEFILE% $(am__config_distclean_files)
+ rm -f %MAKEFILE% $(am__config_distclean_files)
maintainer-clean:
- -rm -f %MAKEFILE% $(am__config_distclean_files)
+ rm -f %MAKEFILE% $(am__config_distclean_files)
.PHONY: clean mostlyclean distclean maintainer-clean \
clean-generic mostlyclean-generic distclean-generic maintainer-clean-generic
@if test -f site.exp; then \
sed -e '1,/^## End of auto-generated content.*##/d' site.exp >> site.tmp; \
fi
- @-rm -f site.bak
+ @rm -f site.bak
@test ! -f site.exp || mv site.exp site.bak
@mv site.tmp site.exp
?ZIP?DIST_ARCHIVES += $(distdir).zip
.PHONY: dist-zip
dist-zip: distdir
- -rm -f $(distdir).zip
+ rm -f $(distdir).zip
zip -rq $(distdir).zip $(distdir)
$(am__post_remove_distdir)