summaryrefslogtreecommitdiff
path: root/build-system/configure.py
blob: b0825dc53caaa563d5aa684b9635edc68be0e752 (plain)
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
# This configure.py file is places in the public domain.

# Configure the build directory.
# This file is invoked by './configure' and should usually not be invoked
# manually.

import talerbuildconfig as tbc
import sys
import shutil

if getattr(tbc, "serialversion", 0) < 2:
    print("talerbuildconfig outdated, please update the build-common submodule and/or bootstrap")
    sys.exit(1)

b = tbc.BuildConfig()

# Declare dependencies
b.add_tool(tbc.PosixTool("find"))
b.add_tool(tbc.PosixTool("awk"))
b.add_tool(tbc.GenericTool("pip3", version_arg="--version"))
b.add_tool(tbc.GenericTool("poetry", version_arg="-V"))

b.run()

print("copying Makefile")
shutil.copyfile("build-system/Makefile", "Makefile")