summaryrefslogtreecommitdiffstats
path: root/fnet/build/buildspec.xml
blob: 22ce5b93d4a5962a772085158939956788808121 (plain) (blame)
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
<!-- Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
<BuildSpecification>
  <Owner>
    <OwnerName></OwnerName>
    <OwnerEmail></OwnerEmail>
  </Owner>

  <Dependencies os="all" arch="all">
    <dep package="common/fastos" version="0.0" />
  </Dependencies>

  <PreBuild os="all" arch="all">
    <configure path="src">
      <parameter value="--fastos-dir ${fbuild_install_dir}/fastos" />
      <parameter value="--install-dir ${fbuild_install_dir}/fnet" />
      <if feature="nodirectwrite">
	<parameter value="--disable-direct-write" />
      </if>
    </configure>
  </PreBuild>

  <Build os="all" arch="all">
    <make path="src" target="bootstrap" />
  </Build>

  <PostBuild os="all" arch="all">
  </PostBuild>

  <Test os="all" arch="all">
  </Test>

  <Install os="all" arch="all">
    <make path="src" target="install" />
  </Install>

  <Dist os="all" arch="all">
  </Dist>

</BuildSpecification>