mirror of
https://github.com/opnsense/plugins.git
synced 2025-12-10 00:09:10 -06:00
74 lines
2.6 KiB
Makefile
74 lines
2.6 KiB
Makefile
# Copyright (c) 2015-2025 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.
|
|
|
|
PLUGINSDIR?= ${.CURDIR}
|
|
|
|
_CATEGORIES!= ls -1d [a-z0-9]*
|
|
CATEGORIES?= ${_CATEGORIES}
|
|
|
|
.for CATEGORY in ${CATEGORIES}
|
|
_${CATEGORY}!= ls -1d ${CATEGORY}/*
|
|
PLUGIN_DIRS+= ${_${CATEGORY}}
|
|
.endfor
|
|
|
|
all:
|
|
@cat ${.CURDIR}/README.md | ${PAGER}
|
|
|
|
.include "Mk/defaults.mk"
|
|
.include "Mk/common.mk"
|
|
.include "Mk/git.mk"
|
|
|
|
list:
|
|
.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)
|
|
.endfor
|
|
|
|
# known good targets (expanded below)
|
|
TARGETS= clean glint lint revision style sweep test
|
|
|
|
.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
|
|
.endfor
|
|
|
|
license:
|
|
@${.CURDIR}/Scripts/license . > ${.CURDIR}/LICENSE
|
|
|
|
readme.md:
|
|
@MAKE=${MAKE} Scripts/update-list.sh
|
|
|
|
sync: readme.md license
|
|
|
|
.PHONY: license readme.md sync
|