hypre/FEI_mv/Makefile.in
2002-06-04 22:01:00 +00:00

54 lines
926 B
Makefile

#BHEADER***********************************************************************
# (c) 2000 The Regents of the University of California
#
# See the file COPYRIGHT for a complete copyright
# notice, contact person, and disclaimer.
#
# $Revision$
#EHEADER***********************************************************************
SHELL = /bin/sh
srcdir = @srcdir@
VPATH = @srcdir@
# These are directories that are not yet officially in HYPRE
HYPRE_FEI_DIRS =\
SuperLU \
fei-hypre \
femli
all:
@ \
for i in ${HYPRE_FEI_DIRS}; \
do \
if [ -d $$i ]; \
then \
echo "Making $$i ..."; \
(cd $$i; $(MAKE) install); \
fi; \
done;
install: all
clean:
@ \
for i in ${HYPRE_FEI_DIRS}; \
do \
if [ -d $$i ]; \
then \
(cd $$i; $(MAKE) clean); \
fi; \
done
veryclean:
@ \
for i in ${HYPRE_FEI_DIRS}; \
do \
if [ -d $$i ]; \
then \
(cd $$i; $(MAKE) veryclean); \
fi; \
done