# HG changeset patch # User Rik # Date 1360819710 28800 # Node ID f4f0aea29b2167a4c3644b2ecebe7734dc0c3ecf # Parent 5306e943ce74f2a73fcc26776a8cbb03e99c2d6d build: remove *-tst files with distclean rule. * libinterp/Makefile.am: Add $(TST_FILES) to distclean rule * liboctave/Makefile.am: Add $(TST_FILES) to distclean rule diff -r 5306e943ce74 -r f4f0aea29b21 libinterp/Makefile.am --- a/libinterp/Makefile.am Wed Feb 13 13:11:59 2013 -0800 +++ b/libinterp/Makefile.am Wed Feb 13 21:28:30 2013 -0800 @@ -356,7 +356,9 @@ DOCSTRINGS \ $(BUILT_NODISTFILES) \ $(OCT_FILES) \ - $(OCT_STAMP_FILES) + $(OCT_STAMP_FILES) \ + $(TST_FILES) MAINTAINERCLEANFILES = \ $(BUILT_DISTFILES) + diff -r 5306e943ce74 -r f4f0aea29b21 liboctave/Makefile.am --- a/liboctave/Makefile.am Wed Feb 13 13:11:59 2013 -0800 +++ b/liboctave/Makefile.am Wed Feb 13 21:28:30 2013 -0800 @@ -135,5 +135,7 @@ nobase_liboctavetests_DATA = $(TST_FILES) -DISTCLEANFILES += $(BUILT_INCS) +DISTCLEANFILES += \ + $(BUILT_INCS) \ + $(TST_FILES)