source: CIVL/examples/omp/m4ri/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.7 KB
Line 
1CIVL=civl
2INCLUDES=-userIncludePath=./m4ri/ -sysIncludePath=./
3SHOW=${CIVL} show -ompNoSimplify -ompLoopDecomp=ROUND_ROBIN -inputTHREAD_MAX=3 -enablePrintf=false
4VERIFY=${CIVL} verify -ompNoSimplify -ompLoopDecomp=ROUND_ROBIN -inputTHREAD_MAX=3 -enablePrintf=false
5VERIFYALL=${CIVL} verify -ompNoSimplify -ompLoopDecomp=ALL -inputTHREAD_MAX=3 -enablePrintf=false
6SIMPLIFY=${CIVL} verify -ompLoopDecomp=ALL -inputTHREAD_MAX=3 -enablePrintf=false
7
8M4RI=m4ri/brilliantrussian.c m4ri/debug_dump.c m4ri/djb.c m4ri/echelonform.c m4ri/graycode.c m4ri/io.c m4ri/misc.c m4ri/mmc.c m4ri/mp.c m4ri/mzd.c m4ri/mzp.c m4ri/ple.c m4ri/ple_russian.c m4ri/solve.c m4ri/strassen.c m4ri/triangular.c m4ri/triangular_russian.c
9
10all: colswap elimination invert kernel misc multiplication ple smallops solve transpose trsm
11
12compile: tests/test_colswap.c
13 gcc -I./m4ri -I. tests/test_colswap.c ${M4RI}
14
15colswap: tests/test_colswap.c
16 ${SHOW} ${INCLUDES} tests/test_colswap.c ${M4RI}
17
18elimination: tests/test_elimination.c
19 ${SHOW} ${INCLUDES} tests/test_elimination.c ${M4RI}
20
21invert: tests/test_invert.c
22 ${SHOW} ${INCLUDES} tests/test_invert.c ${M4RI}
23
24kernel: tests/test_kernel.c
25 ${SHOW} ${INCLUDES} tests/test_kernel.c ${M4RI}
26
27misc: tests/test_misc.c
28 ${SHOW} ${INCLUDES} tests/test_misc.c ${M4RI}
29
30multiplication: tests/test_multiplication.c
31 ${SHOW} ${INCLUDES} tests/test_multiplication.c ${M4RI}
32
33ple: tests/test_ple.c
34 ${SHOW} ${INCLUDES} tests/test_ple.c ${M4RI}
35
36smallops: tests/test_smallops.c
37 ${SHOW} ${INCLUDES} tests/test_smallops.c ${M4RI}
38
39solve: tests/test_solve.c
40 ${SHOW} ${INCLUDES} tests/test_solve.c ${M4RI}
41
42transpose: tests/test_transpose.c
43 ${SHOW} ${INCLUDES} tests/test_transpose.c ${M4RI}
44
45trsm: tests/test_trsm.c
46 ${SHOW} ${INCLUDES} tests/test_trsm.c ${M4RI}
47
48clean:
Note: See TracBrowser for help on using the repository browser.