-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
40 lines (31 loc) · 1.01 KB
/
Makefile
File metadata and controls
40 lines (31 loc) · 1.01 KB
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
All: Example4.1 Example4.2 Example7.1 Example7.2 Example7.3 Example11.5 Example11.6
.PHONY: Example4.1 Example4.2 Example7.1 Example7.2 Example7.3 Example11.5 Example11.6
Example4.1:
cd Example4.1 && mkdir build && cd build && cmake .. && make && \
./triangularallocation
Example4.2:
cd Example4.2 && mkdir build && cd build && cmake .. && make && \
./fortranallocation
Example7.1:
cd Example7.1 && mkdir build && cd build && cmake .. && make && \
./vecadd
Example7.2:
cd Example7.2 && mkdir build && cd build && cmake .. && make && \
./max_reduction
Example7.3:
cd Example7.3 && mkdir build && cd build && cmake .. && make && \
./max_reduction
Example11.5:
cd Example11.5 && mkdir build && cd build && cmake .. && make && \
./mass_sum
Example11.6:
cd Example11.6 && mkdir build && cd build && cmake .. && make && \
./MaxRadius
clean:
rm -rf Example4.1/build
rm -rf Example4.2/build
rm -rf Example7.1/build
rm -rf Example7.2/build
rm -rf Example7.3/build
rm -rf Example11.5/build
rm -rf Example11.6/build