forked from stanford-ppl/Green-Marl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHakefile
57 lines (56 loc) · 2.05 KB
/
Hakefile
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
--------------------------------------------------------------------------
-- Copyright (c) 2011, ETH Zurich.
-- All rights reserved.
--
-- This file is distributed under the terms in the attached LICENSE file.
-- If you do not find this file, copies can be found by writing to:
-- ETH Zurich D-INFK, Haldeneggsteig 4, CH-8092 Zurich. Attn: Systems Group.
--
--------------------------------------------------------------------------
[ build library {
target = "gmgraph",
cFiles = [
"apps/output_cpp/gm_graph/src/barrelfish.c"
],
cxxFiles = [
"apps/output_cpp/gm_graph/src/gm_bitmap.cc",
"apps/output_cpp/gm_graph/src/gm_graph_adj_loader.cc",
"apps/output_cpp/gm_graph/src/gm_read_setup.cc",
"apps/output_cpp/gm_graph/src/gm_common_neighbor_iter.cc",
"apps/output_cpp/gm_graph/src/gm_runtime.cc",
"apps/output_cpp/gm_graph/src/gm_default_usermain.cc",
"apps/output_cpp/gm_graph/src/gm_graph_binary_loader.cc",
"apps/output_cpp/gm_graph/src/gm_useropt.cc",
"apps/output_cpp/gm_graph/src/gm_edge_list_graph_reader.cc",
"apps/output_cpp/gm_graph/src/gm_graph.cc",
"apps/output_cpp/gm_graph/src/gm_util.cc",
"apps/output_cpp/gm_graph/src/gm_file_c.cc",
"apps/output_cpp/gm_graph/src/gm_lock.cc",
"apps/output_cpp/gm_graph/src/graph_gen.cc",
"apps/output_cpp/gm_graph/src/gm_file_handling.cc",
"apps/output_cpp/gm_graph/src/gm_mem_helper.cc",
"apps/output_cpp/gm_graph/src/graph_gen_main.cc",
"apps/output_cpp/gm_graph/src/gm_format_converter.cc",
"apps/output_cpp/gm_graph/src/gm_rand.cc",
"apps/output_cpp/gm_graph/src/shl_graph.cc"
],
addCFlags = [
"-fopenmp"
],
addCxxFlags = [
"-fopenmp",
"-fpermissive"
],
addIncludes = [
"apps/output_cpp/gm_graph/inc"
],
addLibraries = libDeps [
"posixcompat",
"bomp"
],
architectures = [
"x86_64",
"k1om"
]
}
]