Changes since 20181221 are mostly portability related hence the large gap in versions imported. There are however some bug fixes, and a rework of filemon handling. In NetBSD make/filemon/filemon_ktrace.c allows use of fktrace and elimination of filemon(4) which has not had the TLC it needs. FreeBSD filemon(4) is in much better shape, so bmake/filemon/filemon_dev.c allows use of that, with a bit less overhead than the ktrace model. Summary of changes from ChangeLog o str.c: empty string does not match % pattern plus unit-test changes o var.c: import handling of old sysV style modifier using '%' o str.c: refactor brk_string o meta.c: meta_oodate, CHECK_VALID_META is too aggressive for CMD a blank command is perfectly valid. o meta.c: meta_oodate, check for corrupted meta file earlier and more often. * meta.c: meta_compat_parent check for USE_FILEMON patch from Soeren Tempel o meta.c: fix compat mode, need to call meta_job_output() o job.c: extra fds for meta mode not needed if using filemon_dev o meta.c: avoid passing NULL to filemon_*() when meta_needed() returns FALSE. o filemon/filemon_{dev,ktrace}.c: allow selection of filemon implementation. filemon_dev.c uses the kernel module while filemon_ktrace.c leverages the fktrace api available in NetBSD. filemon_ktrace.c can hopefully form the basis for adding support for other tracing mechanisms such as strace on Linux. o meta.c: when target is out-of-date per normal make rules record value of .OODATE in meta file. o parse.c: don't pass NULL to realpath(3) some versions cannot handle it. o parse.c: ParseDoDependency: free paths rather than assert plus more unit-tests
81 lines
2.6 KiB
Makefile
81 lines
2.6 KiB
Makefile
# $Id: options.mk,v 1.11 2020/05/02 21:23:52 sjg Exp $
|
|
#
|
|
# @(#) Copyright (c) 2012, Simon J. Gerraty
|
|
#
|
|
# This file is provided in the hope that it will
|
|
# be of use. There is absolutely NO WARRANTY.
|
|
# Permission to copy, redistribute or otherwise
|
|
# use this file is hereby granted provided that
|
|
# the above copyright notice and this notice are
|
|
# left intact.
|
|
#
|
|
# Please send copies of changes and bug-fixes to:
|
|
# sjg@crufty.net
|
|
#
|
|
|
|
# Inspired by FreeBSD bsd.own.mk, but intentionally simpler and more flexible.
|
|
|
|
# Options are normally listed in either OPTIONS_DEFAULT_{YES,NO}
|
|
# We convert these to ${OPTION}/{yes,no} in OPTIONS_DEFAULT_VALUES.
|
|
# We add the OPTIONS_DEFAULT_NO first so they take precedence.
|
|
# This allows override of an OPTIONS_DEFAULT_YES by adding it to
|
|
# OPTIONS_DEFAULT_NO or adding ${OPTION}/no to OPTIONS_DEFAULT_VALUES.
|
|
# An OPTIONS_DEFAULT_NO option can only be overridden by putting
|
|
# ${OPTION}/yes in OPTIONS_DEFAULT_VALUES.
|
|
# A makefile may set NO_* (or NO*) to indicate it cannot do something.
|
|
# User sets WITH_* and WITHOUT_* to indicate what they want.
|
|
# We set ${OPTION_PREFIX:UMK_}* which is then all we need care about.
|
|
OPTIONS_DEFAULT_VALUES += \
|
|
${OPTIONS_DEFAULT_NO:O:u:S,$,/no,} \
|
|
${OPTIONS_DEFAULT_YES:O:u:S,$,/yes,}
|
|
|
|
OPTION_PREFIX ?= MK_
|
|
|
|
# NO_* takes precedence
|
|
# If both WITH_* and WITHOUT_* are defined, WITHOUT_ wins unless
|
|
# DOMINANT_* is set to "yes"
|
|
# Otherwise WITH_* and WITHOUT_* override the default.
|
|
.for o in ${OPTIONS_DEFAULT_VALUES:M*/*}
|
|
.if defined(NO_${o:H}) || defined(NO${o:H})
|
|
# we cannot do it
|
|
${OPTION_PREFIX}${o:H} ?= no
|
|
.elif defined(WITH_${o:H}) && defined(WITHOUT_${o:H})
|
|
# normally WITHOUT_ wins
|
|
DOMINANT_${o:H} ?= no
|
|
${OPTION_PREFIX}${o:H} ?= ${DOMINANT_${o:H}}
|
|
.elif ${o:T:tl} == "no"
|
|
.if defined(WITH_${o:H})
|
|
${OPTION_PREFIX}${o:H} ?= yes
|
|
.else
|
|
${OPTION_PREFIX}${o:H} ?= no
|
|
.endif
|
|
.else
|
|
.if defined(WITHOUT_${o:H})
|
|
${OPTION_PREFIX}${o:H} ?= no
|
|
.else
|
|
${OPTION_PREFIX}${o:H} ?= yes
|
|
.endif
|
|
.endif
|
|
.endfor
|
|
|
|
# OPTIONS_DEFAULT_DEPENDENT += FOO_UTILS/FOO
|
|
# If neither WITH[OUT]_FOO_UTILS is set, (see rules above)
|
|
# use the value of ${OPTION_PREFIX}FOO
|
|
.for o in ${OPTIONS_DEFAULT_DEPENDENT:M*/*:O:u}
|
|
.if defined(NO_${o:H}) || defined(NO${o:H})
|
|
# we cannot do it
|
|
${OPTION_PREFIX}${o:H} ?= no
|
|
.elif defined(WITH_${o:H}) && defined(WITHOUT_${o:H})
|
|
# normally WITHOUT_ wins
|
|
DOMINANT_${o:H} ?= no
|
|
${OPTION_PREFIX}${o:H} ?= ${DOMINANT_${o:H}}
|
|
.elif defined(WITH_${o:H})
|
|
${OPTION_PREFIX}${o:H} ?= yes
|
|
.elif defined(WITHOUT_${o:H})
|
|
${OPTION_PREFIX}${o:H} ?= no
|
|
.else
|
|
${OPTION_PREFIX}${o:H} ?= ${${OPTION_PREFIX}${o:T}}
|
|
.endif
|
|
.endfor
|
|
.undef OPTIONS_DEFAULT_VALUES OPTIONS_DEFAULT_NO OPTIONS_DEFAULT_YES
|