On Mon, 8 Nov 2010, Roy Stogner wrote:

I dislike ideas #1-3; no opinion on #4 vs #5, but want to add:

Idea #6: Add an example 24 (or 25, whatever's free when this is all
finally finished) demonstrating a use of SystemSubset stuff.

Good point. I created an example now, see attachment. I will check it in (renamed to the appropriate number) when everything has been finished.

I'd like to be sure it doesn't get left out of regression testing too, in part for the same reason.

Are all the examples automatically regression-tested, or would there be something addtional to do?

Best Regards,

Tim

--
Dr. Tim Kroeger
CeVis -- Center of Complex Systems and Visualization
University of Bremen              [email protected]
Universitaetsallee 29             [email protected]
D-28359 Bremen                             Phone +49-421-218-7710
Germany                                    Fax   +49-421-218-4236
# $Id: Makefile 3710 2010-03-10 00:15:21Z roystgnr $


# The location of the mesh library
LIBMESH_DIR ?= ../..

# include the library options determined by configure.  This will
# set the variables INCLUDE and LIBS that we will need to build and
# link with the library.
include $(LIBMESH_DIR)/Make.common


###############################################################################
# File management.  This is where the source, header, and object files are
# defined

#
# source files
srcfiles        := $(wildcard *.C) ../ex3/exact_solution.C

#
# object files
objects         := $(patsubst %.C, %.$(obj-suffix), $(srcfiles))
###############################################################################



.PHONY: clean clobber distclean

###############################################################################
# Target:
#
target     := ./ex42-$(METHOD)


all:: $(target)

# Production rules:  how to make the target - depends on library configuration
$(target): $(objects)
        @echo "Linking "$@"..."
        @$(libmesh_CXX) $(libmesh_CXXFLAGS) $(objects) -o $@ $(libmesh_LIBS) 
$(libmesh_LDFLAGS)


# Useful rules.
clean:
        @rm -f $(objects) *~

clobber:
        @$(MAKE) clean
        @rm -f $(target) out_*

distclean:
        @$(MAKE) clobber
        @rm -f *.o *.g.o *.pg.o

# Warning, the 3D problem may be extremely slow if you are running in debug 
mode.
run: $(target)
        @echo "***************************************************************"
        @echo "* Running Example " $(LIBMESH_RUN) $(target) $(LIBMESH_OPTIONS)
        @echo "***************************************************************"
        @echo " "
        @$(LIBMESH_RUN) $(target) -d 1 -n 40 $(LIBMESH_OPTIONS)
        @$(LIBMESH_RUN) $(target) -d 2 -n 30 $(LIBMESH_OPTIONS)
        @$(LIBMESH_RUN) $(target) -d 3 -n 15 $(LIBMESH_OPTIONS)
        @echo " "
        @echo "***************************************************************"
        @echo "* Done Running Example " $(LIBMESH_RUN) $(target) 
$(LIBMESH_OPTIONS)
        @echo "***************************************************************"


# include the dependency list
include .depend


#
# Dependencies
#
.depend:
        @$(perl) $(LIBMESH_DIR)/contrib/bin/make_dependencies.pl -I. $(foreach 
i, $(wildcard $(LIBMESH_DIR)/include/*), -I$(i)) "-S\$$(obj-suffix)" 
$(srcfiles) > .depend

###############################################################################
------------------------------------------------------------------------------
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
_______________________________________________
Libmesh-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/libmesh-users

Reply via email to