1
2--------------------------------------------------------------------------
3-- Copyright (c) 2007-2012, ETH Zurich.
4-- All rights reserved.
5--
6-- This file is distributed under the terms in the attached LICENSE file.
7-- If you do not find this file, copies can be found by writing to:
8-- ETH Zurich D-INFK, Haldeneggsteig 4, CH-8092 Zurich. Attn: Systems Group.
9--
10-- Hakefile for lib/xeon_phi_manager_client
11--
12--------------------------------------------------------------------------
13
14[ build library {
15    target = "xeon_phi_manager_client",
16    architectures = ["x86_64"],
17    cFiles = [ "xeon_phi_manager_client.c" ],
18    flounderDefs = ["xeon_phi_manager"],
19    flounderBindings = ["xeon_phi_manager"],
20    flounderExtraBindings = [ ("xeon_phi_manager",["rpcclient"]) ]
21  },
22
23  build library {
24    target = "xeon_phi_client",
25    architectures = [
26      "k1om",
27      "x86_64"
28    ],
29    cFiles = [
30      "xeon_phi_client.c",
31      "xeon_phi_domain.c"
32    ],
33    addLibraries = libDeps [ "octopus" ],
34    flounderDefs = ["xeon_phi"],
35    flounderBindings = ["xeon_phi","octopus"]
36  }
37]
38