mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-14 17:57:39 +01:00
* these are dependencies for gcc 4 Graphite engine build. * CLooG 0.18.0 includes ISL 0.11.1 which is the backend that the build script enables. * PPL is needed by GCC build even if it isn't the chosen backend.
81 lines
3.7 KiB
Makefile
81 lines
3.7 KiB
Makefile
#
|
|
# /**-------------------------------------------------------------------**
|
|
# ** CLooG **
|
|
# **-------------------------------------------------------------------**
|
|
# ** makefile **
|
|
# **-------------------------------------------------------------------**
|
|
# ** First version: march 6th 2003 **
|
|
# **-------------------------------------------------------------------**/
|
|
#
|
|
# makefile for checking.
|
|
|
|
#/*****************************************************************************
|
|
# * CLooG : the Chunky Loop Generator (experimental) *
|
|
# *****************************************************************************
|
|
# * *
|
|
# * Copyright (C) 2003 Cedric Bastoul *
|
|
# * *
|
|
# * This library is free software; you can redistribute it and/or *
|
|
# * modify it under the terms of the GNU Lesser General Public *
|
|
# * License as published by the Free Software Foundation; either *
|
|
# * version 2.1 of the License, or (at your option) any later version. *
|
|
# * *
|
|
# * This library is distributed in the hope that it will be useful, *
|
|
# * but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
|
|
# * Lesser General Public License for more details. *
|
|
# * *
|
|
# * You should have received a copy of the GNU Lesser General Public *
|
|
# * License along with this library; if not, write to the Free Software *
|
|
# * Foundation, Inc., 51 Franklin Street, Fifth Floor, *
|
|
# * Boston, MA 02110-1301 USA *
|
|
# * *
|
|
# * CLooG, the Chunky Loop Generator *
|
|
# * Written by Cedric Bastoul, Cedric.Bastoul@inria.fr *
|
|
# * This file has been written with the help of the Bart Kienhuis's checking *
|
|
# * makefile for PipLib. *
|
|
# * *
|
|
# *****************************************************************************/
|
|
|
|
CLOOGTEST_C = \
|
|
cholesky2 \
|
|
fusion1 \
|
|
fusion2 \
|
|
jacobi2 \
|
|
jacobi3 \
|
|
lim-lam1 \
|
|
lim-lam2 \
|
|
lim-lam3 \
|
|
lim-lam4 \
|
|
lim-lam5 \
|
|
lim-lam6 \
|
|
liu-zhuge1 \
|
|
loechner3 \
|
|
loechner4 \
|
|
loechner5 \
|
|
long \
|
|
mg-interp2 \
|
|
mg-interp \
|
|
mg-psinv \
|
|
mg-resid \
|
|
mg-rprj3 \
|
|
pingali1 \
|
|
pingali2 \
|
|
pingali3 \
|
|
pingali4 \
|
|
pingali5 \
|
|
pingali6 \
|
|
QR \
|
|
tang-xue1 \
|
|
two
|
|
|
|
|
|
generate:
|
|
@echo " /*-----------------------------------------------*"
|
|
@echo " * Generate files *"
|
|
@echo " *-----------------------------------------------*/"
|
|
for x in $(CLOOGTEST_C) ; do \
|
|
echo "Generate $$x.c" ; \
|
|
../../obj_i686-pc-linux-gnu/cloog $$x.cloog -o $$x.c ; \
|
|
done
|