CLooG 0.18.4
[cloog.git] / test / reservoir / makefile
blobd5035be1f012ed5bccd839c5ef97808d902d9490
2 # /**-------------------------------------------------------------------**
3 # ** CLooG **
4 # **-------------------------------------------------------------------**
5 # ** makefile **
6 # **-------------------------------------------------------------------**
7 # ** First version: march 6th 2003 **
8 # **-------------------------------------------------------------------**/
10 # makefile for checking.
12 #/*****************************************************************************
13 # * CLooG : the Chunky Loop Generator (experimental) *
14 # *****************************************************************************
15 # * *
16 # * Copyright (C) 2003 Cedric Bastoul *
17 # * *
18 # * This library is free software; you can redistribute it and/or *
19 # * modify it under the terms of the GNU Lesser General Public *
20 # * License as published by the Free Software Foundation; either *
21 # * version 2.1 of the License, or (at your option) any later version. *
22 # * *
23 # * This library is distributed in the hope that it will be useful, *
24 # * but WITHOUT ANY WARRANTY; without even the implied warranty of *
25 # * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
26 # * Lesser General Public License for more details. *
27 # * *
28 # * You should have received a copy of the GNU Lesser General Public *
29 # * License along with this library; if not, write to the Free Software *
30 # * Foundation, Inc., 51 Franklin Street, Fifth Floor, *
31 # * Boston, MA 02110-1301 USA *
32 # * *
33 # * CLooG, the Chunky Loop Generator *
34 # * Written by Cedric Bastoul, Cedric.Bastoul@inria.fr *
35 # * This file has been written with the help of the Bart Kienhuis's checking *
36 # * makefile for PipLib. *
37 # * *
38 # *****************************************************************************/
40 CLOOGTEST_C = \
41 cholesky2 \
42 fusion1 \
43 fusion2 \
44 jacobi2 \
45 jacobi3 \
46 lim-lam1 \
47 lim-lam2 \
48 lim-lam3 \
49 lim-lam4 \
50 lim-lam5 \
51 lim-lam6 \
52 liu-zhuge1 \
53 loechner3 \
54 loechner4 \
55 loechner5 \
56 long \
57 mg-interp2 \
58 mg-interp \
59 mg-psinv \
60 mg-resid \
61 mg-rprj3 \
62 pingali1 \
63 pingali2 \
64 pingali3 \
65 pingali4 \
66 pingali5 \
67 pingali6 \
68 QR \
69 tang-xue1 \
70 two
73 generate:
74 @echo " /*-----------------------------------------------*"
75 @echo " * Generate files *"
76 @echo " *-----------------------------------------------*/"
77 for x in $(CLOOGTEST_C) ; do \
78 echo "Generate $$x.c" ; \
79 ../../obj_i686-pc-linux-gnu/cloog $$x.cloog -o $$x.c ; \
80 done