Skip to content

Commit

Permalink
tests: distclean
Browse files Browse the repository at this point in the history
Refs #1593.
  • Loading branch information
benkirk authored and jwpeterson committed Mar 6, 2018
1 parent 379f0d6 commit c24f08e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
7 changes: 6 additions & 1 deletion tests/Makefile.am
Expand Up @@ -184,10 +184,15 @@ TESTS = run_unit_tests.sh
endif

CLEANFILES = cube_mesh.xda \
checkpoint_splitter.cpr* checkpoint_splitter.cpa* \
slit_mesh.xda slit_solution.xda \
out.e

# CLEANFILES only applies to files, handle directories separately
clean-local:
rm -rf checkpoint_splitter.cpr \
checkpoint_splitter.cpa \
.jitcache

######################################################################
#
# Don't leave code coverage outputs lying around
Expand Down
13 changes: 9 additions & 4 deletions tests/Makefile.in
Expand Up @@ -1134,8 +1134,7 @@ unit_tests_sources = driver.C test_comm.h stream_redirector.h \
@LIBMESH_ENABLE_CPPUNIT_TRUE@@LIBMESH_OPROF_MODE_TRUE@unit_tests_oprof_CXXFLAGS = $(CXXFLAGS_OPROF)
@LIBMESH_ENABLE_CPPUNIT_TRUE@@LIBMESH_OPROF_MODE_TRUE@unit_tests_oprof_LDADD = $(top_builddir)/libmesh_oprof.la
@LIBMESH_ENABLE_CPPUNIT_TRUE@TESTS = run_unit_tests.sh
CLEANFILES = cube_mesh.xda checkpoint_splitter.cpr* \
checkpoint_splitter.cpa* slit_mesh.xda slit_solution.xda out.e \
CLEANFILES = cube_mesh.xda slit_mesh.xda slit_solution.xda out.e \
$(am__append_12)
all: all-am

Expand Down Expand Up @@ -6146,7 +6145,7 @@ maintainer-clean-generic:
@echo "it deletes files that may require special tools to rebuild."
clean: clean-am

clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
clean-am: clean-checkPROGRAMS clean-generic clean-libtool clean-local \
clean-noinstPROGRAMS mostlyclean-am

distclean: distclean-am
Expand Down Expand Up @@ -6218,7 +6217,7 @@ uninstall-am:
.MAKE: check-am install-am install-strip

.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
clean-checkPROGRAMS clean-generic clean-libtool \
clean-checkPROGRAMS clean-generic clean-libtool clean-local \
clean-noinstPROGRAMS cscopelist-am ctags ctags-am distclean \
distclean-compile distclean-generic distclean-libtool \
distclean-tags distdir dvi dvi-am html html-am info info-am \
Expand Down Expand Up @@ -6264,6 +6263,12 @@ $(top_builddir)/libmesh_prof.la: FORCE
$(top_builddir)/libmesh_oprof.la: FORCE
(cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) libmesh_oprof.la)

# CLEANFILES only applies to files, handle directories separately
clean-local:
rm -rf checkpoint_splitter.cpr \
checkpoint_splitter.cpa \
.jitcache

# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:

0 comments on commit c24f08e

Please sign in to comment.