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

54 lines
904 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 the directories for the IJ interface
HYPRE_IJ_DIRS =\
pilut\
ParaSails\
Euclid
all:
@ \
for i in ${HYPRE_IJ_DIRS}; \
do \
if [ -d $$i ]; \
then \
echo "Making $$i ..."; \
(cd $$i; $(MAKE) install); \
fi; \
done
install: all
clean:
@ \
for i in ${HYPRE_IJ_DIRS}; \
do \
if [ -d $$i ]; \
then \
(cd $$i; $(MAKE) clean); \
fi; \
done
veryclean:
@ \
for i in ${HYPRE_IJ_DIRS}; \
do \
if [ -d $$i ]; \
then \
(cd $$i; $(MAKE) veryclean); \
fi; \
done