summaryrefslogtreecommitdiff
path: root/config/companion_tools/make.in
blob: b6834a75b6f5b04ada74eb54cc60eb05a357a384 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# GNU make

## default y if !CONFIGURE_has_make_3_81_or_newer
## help GNU make

choice
    bool
    prompt "make version"
# Don't remove next line
# CT_INSERT_VERSION_BELOW

config MAKE_V_4_2_1
    bool
    prompt "4.2.1"

config MAKE_V_4_1
    bool
    prompt "4.1 (OBSOLETE)"
    depends on OBSOLETE

config MAKE_V_4_0
    bool
    prompt "4.0 (OBSOLETE)"
    depends on OBSOLETE

config MAKE_V_3_81
    bool
    prompt "3.81 (OBSOLETE)"
    depends on OBSOLETE

endchoice

config MAKE_GMAKE_SYMLINK
    bool
    prompt "Add gmake symlink to companion gnu/make"
    depends on COMP_TOOLS_make

config MAKE_VERSION
    string
# Don't remove next line
# CT_INSERT_VERSION_STRING_BELOW
    default "4.2.1" if MAKE_V_4_2_1
    default "4.1" if MAKE_V_4_1
    default "4.0" if MAKE_V_4_0
    default "3.81" if MAKE_V_3_81