summaryrefslogtreecommitdiff
path: root/config/versions/make.in
blob: 6f0a607e83dec084fb121acf8d55b275fb72b3ef (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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#
# DO NOT EDIT! This file is automatically generated.
#


if EXPERIMENTAL
choice
	bool "Source of make"

config MAKE_SRC_RELEASE
	bool "Released tarball"
	help
	  Download a released tarball.

config MAKE_SRC_DEVEL
	bool "Vendor repository"
	help
	  Check out from vendor repository at:
	  https://git.savannah.gnu.org/git/make.git

if MAKE_SRC_DEVEL

config MAKE_DEVEL_VCS
	string
	default "git"

config MAKE_DEVEL_URL
	string
	default "https://git.savannah.gnu.org/git/make.git"

config MAKE_DEVEL_BRANCH
	string "Branch to check out"
	default "master"
	help
	  Git: branch to be checked out
	  Subversion: directories to append to the repository URL.

config MAKE_DEVEL_REVISION
	string "Revision/changeset"
	default "HEAD"
	help
	  Commit ID or revision ID to check out.

endif

config MAKE_SRC_CUSTOM
	bool "Custom location"
	depends on EXPERIMENTAL
	help
	  Custom directory or tarball.

if MAKE_SRC_CUSTOM

config MAKE_CUSTOM_LOCATION
	string "Custom source location"
	help
	  Path to the directory or tarball with the sources.

endif

endchoice
endif

config MAKE_MIRRORS_ARRAY
    string
    default ""

choice
	bool "Version of make"
    help
      For a released version, select the version of make to download
      and build. For sources out of the vendor repository or from a custom
      location, select the version that describes those custom sources.
      Based on this version, crosstool-NG may apply some version-specific
      quirks while building make.

config MAKE_VERY_NEW
    bool "newer than anything below"
    depends on EXPERIMENTAL
    depends on MAKE_SRC_DEVEL || MAKE_SRC_CUSTOM

config MAKE_V_4_2_1
	bool "4.2.1"

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

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

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

config MAKE_VERY_OLD
    bool "older than anything above"
    depends on OBSOLETE && EXPERIMENTAL
    depends on MAKE_SRC_DEVEL || MAKE_SRC_CUSTOM

endchoice



config MAKE_VERSION
	string
	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
	default "unknown"