forked from RALC88/riscv-vectorized-benchmark-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
executable file
·68 lines (55 loc) · 1.12 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
BASE_DIR := $(shell pwd)
APPLICATION_DIRS := _axpy _blackscholes _canneal _jacobi-2d _lavaMD _swaptions _streamcluster _somier _particlefilter _pathfinder
all: axpy blackscholes canneal jacobi-2d lavaMD swaptions streamcluster somier particlefilter pathfinder
axpy:
cd _axpy; \
make start; \
make vector; \
make serial;
blackscholes:
cd _blackscholes; \
make start; \
make vector; \
make serial;
canneal:
cd _canneal; \
make start; \
make vector; \
make serial;
jacobi-2d:
cd _jacobi-2d; \
make start; \
make vector; \
make serial;
lavaMD:
cd _lavaMD; \
make start; \
make vector; \
make serial;
particlefilter:
cd _particlefilter; \
make start; \
make vector; \
make serial;
pathfinder:
cd _pathfinder; \
make start; \
make vector; \
make serial;
swaptions:
cd _swaptions; \
make start; \
make vector; \
make serial;
somier:
cd _somier; \
make start; \
make vector; \
make serial;
streamcluster:
cd _streamcluster; \
make start; \
make vector; \
make serial;
clean:
for dir in $(APPLICATION_DIRS) ; do cd $$dir ; make clean ; cd .. ; done