diff --git a/contrib/utils/Makefile.in b/contrib/utils/Makefile.in index dfd35f4b565..8df25bef50c 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 - ###############################################################################