doc/en_US.ISO8859-1/htdocs/releases/12.0R/Makefile
Glen Barber 0aa859afda Update the 12.0R release documentation following the recent move
from the base repository with changes provided by hrs@, and further
tweaks from myself.

Of note:
- Consolidate duplicated logic throughout the Makefiles and shared
  logic, and move files to more sane locations where they may be
  shared by other parts of the build tools.
- Update location of several entity files.
- In the top-level Makefile, only include the hardware page if the
  MAN4PAGES knob is set.  This is done to prevent build failures on
  the website until the webupdate script and wrapper are updated,
  which will require some more thought. [1]

This fixes the 'reldoc' target in release/Makefile in head, found
to be broken a few days ago.

[1] Changes from myself.

Patch provided by:	hrs
Sponsored by:	The FreeBSD Foundation
2017-12-07 19:58:47 +00:00

64 lines
1 KiB
Makefile

# $FreeBSD$
.if exists(../Makefile.conf)
.include "../Makefile.conf"
.endif
.if exists(../Makefile.inc)
.include "../Makefile.inc"
.endif
RELN_ROOT?= ${.CURDIR}
_OS?= FreeBSD
_REVISION?= 12.0
_BRANCH?= RELEASE
THISRELEASE?= ${_OS}-${_REVISION}-${_BRANCH}
DOCS= index.xml \
schedule.xml
DATA= docbook.css
SUBDIR= errata readme relnotes
.if defined(MAN4DIR) && !empty(MAN4DIR)
SUBDIR+= hardware
.endif
# PGP-signed checksums
_BIGIRON?= amd64 \
i386 \
powerpc \
powerpc-powerpc64 \
sparc64 \
arm64-aarch64
_VMS?= amd64 \
i386 \
arm64-aarch64
_ARM?= BANANAPI \
BEAGLEBONE \
CUBIEBOARD \
CUBIEBOARD2 \
CUBOX-HUMMINGBOARD \
GUMSTIX \
PANDABOARD \
RPI-B \
RPI2 \
WANDBOARD
.for CHECKSUM in SHA512 SHA256
. for _B in ${_BIGIRON}
#DATA+= CHECKSUM.${CHECKSUM}-${THISRELEASE}-${_B}.asc
. endfor
. for _V in ${_VMS}
#DATA+= CHECKSUM.${CHECKSUM}-${THISRELEASE}-${_V}-vm.asc
. endfor
. for _A in ${_ARM}
#DATA+= CHECKSUM.${CHECKSUM}-${THISRELEASE}-arm-armv6-${_A}.asc
. endfor
.endfor
.include "${DOC_PREFIX}/share/mk/web.site.mk"