source: CIVL/examples/mpi-omp/AMG2013/Makefile

main
Last change on this file was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago

Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5704 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 1.3 KB
RevLine 
[2aa6644]1#BHEADER**********************************************************************
2# Copyright (c) 2008, Lawrence Livermore National Security, LLC.
3# Produced at the Lawrence Livermore National Laboratory.
4# This file is part of HYPRE. See file COPYRIGHT for details.
5#
6# HYPRE is free software; you can redistribute it and/or modify it under the
7# terms of the GNU Lesser General Public License (as published by the Free
8# Software Foundation) version 2.1 dated February 1999.
9#
10# $Revision: 2.4 $
11#EHEADER**********************************************************************
12
13
14
15srcdir = .
16
17HYPRE_DIRS =\
18 utilities\
19 krylov\
20 IJ_mv\
21 parcsr_ls\
22 parcsr_mv\
23 seq_mv\
24 struct_mv\
25 sstruct_mv\
26 test
27
28all:
29 @ \
30 for i in ${HYPRE_DIRS}; \
31 do \
32 if [ -d $$i ]; \
33 then \
34 echo "Making $$i ..."; \
35 (cd $$i; make); \
36 echo ""; \
37 fi; \
38 done
39
40clean:
41 @ \
42 for i in ${HYPRE_DIRS}; \
43 do \
44 if [ -d $$i ]; \
45 then \
46 echo "Cleaning $$i ..."; \
47 (cd $$i; make clean); \
48 fi; \
49 done
50
51veryclean:
52 @ \
53 for i in ${HYPRE_DIRS}; \
54 do \
55 if [ -d $$i ]; \
56 then \
57 echo "Very-cleaning $$i ..."; \
58 (cd $$i; make veryclean); \
59 fi; \
60 done
61
62tags:
63 find . -name "*.c" -or -name "*.C" -or -name "*.h" -or -name "*.c??" -or -name "*.h??" -or -name "*.f" | etags -
Note: See TracBrowser for help on using the repository browser.