hypre/PETScMat_ls/Makefile.in
2001-08-27 21:24:02 +00:00

56 lines
951 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_EXTRA_DIRS =\
pilut
all:
@ \
for i in ${HYPRE_EXTRA_DIRS}; \
do \
if [ -d $$i ]; \
then \
echo "Making $$i ..."; \
(cd $$i; $(MAKE) install); \
echo ""; \
fi; \
done; \
echo ""
install: all
@ \
echo ""
clean:
@ \
for i in ${HYPRE_EXTRA_DIRS}; \
do \
if [ -d $$i ]; \
then \
(cd $$i; $(MAKE) clean); \
fi; \
done
veryclean:
@ \
for i in ${HYPRE_EXTRA_DIRS}; \
do \
if [ -d $$i ]; \
then \
(cd $$i; $(MAKE) veryclean); \
fi; \
done