From b9a667cc9c2984050bbe1e69c34f82182b891ca5 Mon Sep 17 00:00:00 2001 From: John Peterson Date: Fri, 22 Jun 2018 14:02:53 -0600 Subject: [PATCH] Drop old dependency generation and user-specific 'gmv' targets. Refs #1754. --- contrib/utils/Makefile.in | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/contrib/utils/Makefile.in b/contrib/utils/Makefile.in index dfd35f4b56..8df25bef50 100644 --- a/contrib/utils/Makefile.in +++ b/contrib/utils/Makefile.in @@ -52,7 +52,7 @@ clobber: clean @rm -f $(target) distclean: clean - @rm -rf *.o .libs .depend + @rm -rf *.o .libs echo: @echo srcfiles = $(srcfiles) @@ -75,17 +75,4 @@ complete: $(wildcard *.in) @echo "* Done Running App " $(notdir $(target)) @echo "***************************************************************" -gmv: - @$(MAKE) -C $(LIBMESH_DIR)/roy/meshplot/ meshplot-$(METHOD) - @for file in out.mesh.*; do ${LIBMESH_RUN} $(LIBMESH_DIR)/roy/meshplot/meshplot-$(METHOD) $$file out.soln.$${file##out.mesh.} out.gmv.$${file:9:4}; done - -# include the dependency list --include .depend - -# -# Dependencies -# -.depend: $(srcfiles) $(LIBMESH_DIR)/include/libmesh/*.h - @$(perl) $(LIBMESH_DIR)/contrib/bin/make_dependencies.pl -I. $(foreach i, $(LIBMESH_DIR)/include $(wildcard $(LIBMESH_DIR)/include/*), -I$(i)) "-S\$$(obj-suffix)" $(srcfiles) > .depend - ###############################################################################