-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHakefile
71 lines (68 loc) · 2.27 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
--------------------------------------------------------------------------
-- Copyright (c) 2013, 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, Universitaetstr. 6, CH-8092 Zurich. Attn: Systems Group.
--
-- Hakefile for lib/sync
--
--------------------------------------------------------------------------
[ build application {
target = "benchmarks/cons",
cxxFiles = [
"bench/main.c",
"com_layer.c",
"replica.c",
"tpc_replica.c",
"one_replica.c",
"shm_queue.c",
"broadcast_replica.c",
"chain_replica.c",
"client.c",
"incremental_stats.c"
],
addLibraries = [ "sync_ump", "bench" ],
addIncludes = [ "/lib/sync/sync/inc", "/lib/sync/sync/inc/backends", "/lib/sync/umpq", "includes" ],
architectures = [ "x86_64" ]
},
build application {
target = "benchmarks/cons_ump",
cxxFiles = [
"bench/main.c",
"com_layer.c",
"replica.c",
"tpc_replica.c",
"one_replica.c",
"shm_queue.c",
"broadcast_replica.c",
"chain_replica.c",
"client.c",
"incremental_stats.c"
],
addLibraries = [ "sync_ump", "bench" ],
addIncludes = [ "/lib/sync/sync/inc", "/lib/sync/sync/inc/backends", "/lib/sync/umpq", "includes" ],
addCxxFlags = [ "-DSMLT" ],
architectures = [ "x86_64" ]
},
build application {
target = "benchmarks/cons_ffq",
cxxFiles = [
"bench/main.c",
"com_layer.c",
"replica.c",
"tpc_replica.c",
"one_replica.c",
"shm_queue.c",
"broadcast_replica.c",
"chain_replica.c",
"client.c",
"incremental_stats.c"
],
addLibraries = [ "sync_ffq", "bench" ],
addIncludes = [ "/lib/sync/sync/inc", "/lib/sync/sync/inc/backends", "/lib/sync/umpq", "includes" ],
addCxxFlags = [ "-DSMLT", "-DUSE_FFQ" ],
architectures = [ "x86_64" ]
}
]