opnsense-tools/Makefile

193 lines
5.7 KiB
Makefile
Raw Permalink Normal View History

# Copyright (c) 2015-2023 Franco Fichtner <franco@opnsense.org>
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
STEPS= audit arm base boot chroot clean clone compress confirm \
connect core distfiles download dvd fingerprint info \
kernel list make.conf nano options packages plugins ports \
prefetch print rebase release rename serial sign \
skim test update upload verify vga vm xtools
2023-04-17 10:41:23 +02:00
SCRIPTS= custom distribution factory hotfix nightly watch
2019-07-02 08:26:40 +02:00
.PHONY: ${STEPS} ${SCRIPTS}
PAGER?= less
.MAKE.JOB.PREFIX?= # tampers with some of our make invokes
all:
@cat ${.CURDIR}/README.md | ${PAGER}
lint-steps:
.for STEP in common ${STEPS}
2016-03-04 15:46:37 +01:00
@sh -n ${.CURDIR}/build/${STEP}.sh
.endfor
2018-10-12 08:33:47 +02:00
lint-composite:
.for SCRIPT in ${SCRIPTS}
2018-10-12 08:33:47 +02:00
@sh -n ${.CURDIR}/composite/${SCRIPT}.sh
.endfor
2018-10-12 08:33:47 +02:00
lint: lint-steps lint-composite
2016-03-04 15:46:37 +01:00
# Special vars to load early build.conf settings:
ROOTDIR?= /usr
TOOLSDIR?= ${ROOTDIR}/tools
TOOLSBRANCH?= master
.if defined(CONFIGDIR)
_CONFIGDIR= ${CONFIGDIR}
.elif defined(SETTINGS)
_CONFIGDIR= ${TOOLSDIR}/config/${SETTINGS}
.elif !defined(CONFIGDIR)
__CONFIGDIR!= find -s ${TOOLSDIR}/config -name "build.conf" -type f
.for DIR in ${__CONFIGDIR}
. if exists(${DIR}) && empty(_CONFIGDIR)
_CONFIGDIR= ${DIR:C/\/build\.conf$//}
. endif
.endfor
.endif
.-include "${_CONFIGDIR}/build.conf.local"
.include "${_CONFIGDIR}/build.conf"
# Bootstrap the build options if not set:
NAME?= OPNsense
TYPE?= ${NAME:tl}
SUFFIX?= # empty
2016-07-21 21:40:28 +02:00
_ARCH!= uname -p
ARCH?= ${_ARCH}
ABI?= ${_CONFIGDIR:C/^.*\///}
KERNEL?= SMP
ADDITIONS?= # empty
DEBUG?= # empty
2019-05-07 10:02:53 +02:00
DEVICE?= A10
COMSPEED?= 115200
2021-08-20 11:35:28 +02:00
UEFI?= arm dvd serial vga vm
ZFS?= # empty
GITBASE?= https://github.com/opnsense
2016-02-02 21:08:53 +01:00
MIRRORS?= https://opnsense.c0urier.net \
https://mirrors.nycbug.org/pub/opnsense \
https://mirror.wdc1.us.leaseweb.net/opnsense \
https://mirror.sfo12.us.leaseweb.net/opnsense \
https://mirror.fra10.de.leaseweb.net/opnsense \
https://mirror.ams1.nl.leaseweb.net/opnsense
2018-03-17 09:13:29 +01:00
SERVER?= user@does.not.exist
UPLOADDIR?= .
_VERSION!= date '+%Y%m%d%H%M'
VERSION?= ${_VERSION}
STAGEDIRPREFIX?=/usr/obj
EXTRABRANCH?= # empty
COREBRANCH?= stable/${ABI}
COREVERSION?= # empty
COREDIR?= ${ROOTDIR}/core
COREENV?= CORE_PHP=${PHP} CORE_ABI=${ABI} CORE_PYTHON=${PYTHON}
PLUGINSBRANCH?= stable/${ABI}
PLUGINSDIR?= ${ROOTDIR}/plugins
PLUGINSENV?= PLUGIN_PHP=${PHP} PLUGIN_ABI=${ABI} PLUGIN_PYTHON=${PYTHON}
PORTSBRANCH?= master
PORTSDIR?= ${ROOTDIR}/ports
PORTSENV?= # empty
2021-08-02 10:51:18 +02:00
PORTSREFURL?= https://git.FreeBSD.org/ports.git
PORTSREFDIR?= ${ROOTDIR}/freebsd-ports
2021-08-02 10:51:18 +02:00
PORTSREFBRANCH?=main
SRCBRANCH?= stable/${ABI}
SRCDIR?= ${ROOTDIR}/src
2016-02-02 16:47:06 +01:00
# A couple of meta-targets for easy use and ordering:
2022-01-18 11:40:28 +01:00
kernel ports distfiles: base
audit plugins: ports
2016-02-02 16:47:06 +01:00
core: plugins
packages test: core
arm dvd nano serial vga vm: kernel core
sets: kernel distfiles packages
images: dvd nano serial vga vm
release: dvd nano serial vga
# Expand target arguments for the script append:
.for TARGET in ${.TARGETS}
_TARGET= ${TARGET:C/\-.*//}
.if ${_TARGET} != ${TARGET}
.if ${SCRIPTS:M${_TARGET}}
${_TARGET}_ARGS+= ${TARGET:C/^[^\-]*(\-|\$)//}
.else
${_TARGET}_ARGS+= ${TARGET:C/^[^\-]*(\-|\$)//:S/,/ /g}
.endif
${TARGET}: ${_TARGET}
.endif
.endfor
.if "${VERBOSE}" != ""
VERBOSE_FLAGS= -x
.else
VERBOSE_HIDDEN= @
2015-08-21 11:07:49 +02:00
.endif
.for _VERSION in ABI DEBUG LUA PERL PHP PYTHON RUBY SSL VERSION ZFS
2018-04-05 08:23:30 +02:00
VERSIONS+= PRODUCT_${_VERSION}=${${_VERSION}}
.endfor
# Expand build steps to launch into the selected
# script with the proper build options set:
.for STEP in ${STEPS}
${STEP}: lint-steps
${VERBOSE_HIDDEN} cd ${.CURDIR}/build && \
sh ${VERBOSE_FLAGS} ./${.TARGET}.sh -a ${ARCH} -F ${KERNEL} \
-n ${NAME} -v "${VERSIONS}" -s ${_CONFIGDIR} \
-S ${SRCDIR} -P ${PORTSDIR} -p ${PLUGINSDIR} -T ${TOOLSDIR} \
-C ${COREDIR} -R ${PORTSREFDIR} -t ${TYPE} -k "${PRIVKEY}" \
-K "${PUBKEY}" -l "${SIGNCHK}" -L "${SIGNCMD}" -d ${DEVICE} \
-m ${MIRRORS:Ox:[1]} -o "${STAGEDIRPREFIX}" -c ${COMSPEED} \
-b ${SRCBRANCH} -B ${PORTSBRANCH} -e ${PLUGINSBRANCH} \
2017-01-12 08:22:37 +01:00
-g ${TOOLSBRANCH} -E ${COREBRANCH} -G ${PORTSREFBRANCH} \
-H "${COREENV}" -u "${UEFI:tl}" -U "${SUFFIX}" \
-V "${ADDITIONS}" -O "${GITBASE}" -r "${SERVER}" \
-h "${PLUGINSENV}" -I "${UPLOADDIR}" -D "${EXTRABRANCH}" \
-A "${PORTSREFURL}" -J "${PORTSENV}" ${${STEP}_ARGS}
.endfor
.for SCRIPT in ${SCRIPTS}
2018-10-12 08:33:47 +02:00
${SCRIPT}: lint-composite
2023-02-07 08:02:13 +01:00
${VERBOSE_HIDDEN} cd ${.CURDIR} && \
sh ${VERBOSE_FLAGS} ./composite/${SCRIPT}.sh ${${SCRIPT}_ARGS}
.endfor
_OS!= uname -r
_OS:= ${_OS:C/-.*//}
.if "${_OS}" != "${OS}"
.error Expected OS version ${OS} for ${_CONFIGDIR}; to continue anyway set OS=${_OS}
.endif