opnsense-plugins/Makefile

74 lines
2.6 KiB
Makefile
Raw Permalink Normal View History

2025-07-29 09:04:18 -04:00
# Copyright (c) 2015-2025 Franco Fichtner <franco@opnsense.org>
2018-01-03 01:36:15 -05:00
#
# 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.
2025-07-30 03:34:54 -04:00
PLUGINSDIR?= ${.CURDIR}
2025-08-05 05:54:41 -04:00
_CATEGORIES!= ls -1d [a-z0-9]*
CATEGORIES?= ${_CATEGORIES}
.for CATEGORY in ${CATEGORIES}
_${CATEGORY}!= ls -1d ${CATEGORY}/*
PLUGIN_DIRS+= ${_${CATEGORY}}
.endfor
2015-07-09 06:35:20 -04:00
2025-07-30 03:34:54 -04:00
all:
@cat ${.CURDIR}/README.md | ${PAGER}
.include "Mk/defaults.mk"
.include "Mk/common.mk"
.include "Mk/git.mk"
2015-07-09 06:35:20 -04:00
list:
2016-09-26 11:37:26 -04:00
.for PLUGIN_DIR in ${PLUGIN_DIRS}
@echo ${PLUGIN_DIR} -- $$(${MAKE} -C ${PLUGIN_DIR} -v PLUGIN_COMMENT) \
$$(if [ "$$(${MAKE} -C ${PLUGIN_DIR} -v PLUGIN_MAINTAINER)" = "N/A" ]; then echo "(not maintained)"; fi) \
$$(if [ -n "$$(${MAKE} -C ${PLUGIN_DIR} -v PLUGIN_DEVEL _PLUGIN_DEVEL=)" ]; then echo "(development only)"; fi) \
$$(if [ -n "$$(${MAKE} -C ${PLUGIN_DIR} -v PLUGIN_OBSOLETE)" ]; then echo "(pending removal)"; fi)
2016-09-26 11:37:26 -04:00
.endfor
# known good targets (expanded below)
2025-07-29 08:47:53 -04:00
TARGETS= clean glint lint revision style sweep test
2016-10-21 13:59:26 -04:00
.for _TARGET in ${.TARGETS}
__TARGET= ${TARGETS:M${_TARGET:C/-.*//}}
. if "${__TARGET}" != ""
${_TARGET}:
. for PLUGIN_DIR in ${PLUGIN_DIRS}
@echo ">>> Entering ${PLUGIN_DIR} with target '${_TARGET}'"
@${MAKE} -C ${PLUGIN_DIR} ${_TARGET}
. endfor
. endif
2016-10-21 13:59:26 -04:00
.endfor
2017-08-07 12:32:34 -04:00
license:
@${.CURDIR}/Scripts/license . > ${.CURDIR}/LICENSE
2019-11-16 03:45:35 -05:00
readme.md:
@MAKE=${MAKE} Scripts/update-list.sh
sync: readme.md license
.PHONY: license readme.md sync