Deleted Added
full compact
Makefile.mirrors (289337) Makefile.mirrors (300814)
1#
2# This Makefile helps create the directory structure on ftp-master,
3# making staging builds a bit more sane.
4#
5# You probably do not want to use this. Really.
6# You have been warned.
7#
8# Seriously.
9#
10# Don't use this unless you know why you're using it.
11#
1#
2# This Makefile helps create the directory structure on ftp-master,
3# making staging builds a bit more sane.
4#
5# You probably do not want to use this. Really.
6# You have been warned.
7#
8# Seriously.
9#
10# Don't use this unless you know why you're using it.
11#
12# $FreeBSD: head/release/Makefile.mirrors 289337 2015-10-14 22:33:11Z gjb $
12# $FreeBSD: head/release/Makefile.mirrors 300814 2016-05-27 01:07:48Z gjb $
13#
14
15.include "${.CURDIR}/Makefile"
16
17RELEASEDIR?= /R
18FTPDIR?= ${RELEASEDIR}/ftp-stage
19.if exists(${RELEASEDIR})
20STAGE_TARGETS?= iso-images-stage
21.endif
22
23.if (defined(EMBEDDED_TARGET) && !empty(EMBEDDED_TARGET)) || (defined(EMBEDDEDBUILD) && !empty(EMBEDDEDBUILD))
24. if ${TARGET} == "arm" || ${EMBEDDED_TARGET} == "arm"
25EMBEDDED= 1
26. endif
27.endif
28
29# snapshot
13#
14
15.include "${.CURDIR}/Makefile"
16
17RELEASEDIR?= /R
18FTPDIR?= ${RELEASEDIR}/ftp-stage
19.if exists(${RELEASEDIR})
20STAGE_TARGETS?= iso-images-stage
21.endif
22
23.if (defined(EMBEDDED_TARGET) && !empty(EMBEDDED_TARGET)) || (defined(EMBEDDEDBUILD) && !empty(EMBEDDEDBUILD))
24. if ${TARGET} == "arm" || ${EMBEDDED_TARGET} == "arm"
25EMBEDDED= 1
26. endif
27.endif
28
29# snapshot
30.if ${BRANCH} == "STABLE" || ${BRANCH} == "CURRENT" || ${BRANCH} == "PRERELEASE"
30.if ${BRANCH} == "STABLE" || ${BRANCH} == "CURRENT" || ${BRANCH} == "PRERELEASE" || ${BRANCH:MALPHA*} != ""
31SNAPSHOT= 1
32TLD?= ${FTPDIR}/snapshots
33. if !defined(SVNREVISION) || empty(SVNREVISION)
34. for _D in /usr/bin /usr/local/bin
35. for _S in svnversion svnliteversion
36. if exists(${_D}/${_S})
37SVNVERSION?= ${_D}/${_S}
38. endif

--- 19 unchanged lines hidden (view full) ---

58
59.if defined(EMBEDDED) && !empty(EMBEDDED)
60. if ${TARGET} == "arm" && ${TARGET_ARCH} == "armv6"
61. if !defined(BOARDNAME) && empty(BOARDNAME)
62BOARDNAME:= ${KERNCONF}
63. else
64OLDNAME:= ${KERNCONF}
65. endif
31SNAPSHOT= 1
32TLD?= ${FTPDIR}/snapshots
33. if !defined(SVNREVISION) || empty(SVNREVISION)
34. for _D in /usr/bin /usr/local/bin
35. for _S in svnversion svnliteversion
36. if exists(${_D}/${_S})
37SVNVERSION?= ${_D}/${_S}
38. endif

--- 19 unchanged lines hidden (view full) ---

58
59.if defined(EMBEDDED) && !empty(EMBEDDED)
60. if ${TARGET} == "arm" && ${TARGET_ARCH} == "armv6"
61. if !defined(BOARDNAME) && empty(BOARDNAME)
62BOARDNAME:= ${KERNCONF}
63. else
64OLDNAME:= ${KERNCONF}
65. endif
66. if ${BRANCH} == "STABLE" || ${BRANCH} == "CURRENT" || ${BRANCH} == "PRERELEASE"
66. if ${BRANCH} == "STABLE" || ${BRANCH} == "CURRENT" || ${BRANCH} == "PRERELEASE" || ${BRANCH:MALPHA*} != ""
67SNAPSHOT= 1
68. endif
69IMAGES:= img
70. endif # arm/armv6
71.endif # embedded
72
73.if defined(WITH_VMIMAGES) && !empty(WITH_VMIMAGES)
74STAGE_TARGETS+= vm-images-stage

--- 180 unchanged lines hidden ---
67SNAPSHOT= 1
68. endif
69IMAGES:= img
70. endif # arm/armv6
71.endif # embedded
72
73.if defined(WITH_VMIMAGES) && !empty(WITH_VMIMAGES)
74STAGE_TARGETS+= vm-images-stage

--- 180 unchanged lines hidden ---