/usr/share/mk/bps.subdir.mk is in bsdowl 2.2.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | ### bps.subdir.mk -- Manage subdirectories
# Author: Michael Grünewald
# Date: Ven 10 fév 2006 16:24:23 GMT
# Cookie: SYNOPSIS TARGET VARIABLE EN DOCUMENTATION
# BSD Owl Scripts (https://bitbucket.org/michipili/bsdowl)
# This file is part of BSD Owl Scripts
#
# Copyright © 2005–2014 Michael Grünewald
#
# This file must be used under the terms of the CeCILL-B.
# This source file is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
# are also available at
# http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.txt
### SYNOPSIS
# SUBDIR+= library
# SUBDIR+= program
# SUBDIR+= manual
#
# .include "bps.subdir.mk"
### DESCRIPTION
# Diffuse la demande de production des cibles administratives énumérées par la
# variables _SUBDIR_TARGET vers les sous-répertoires énumérés par la variable
# SUBDIR.
#
# Pour chaque cible administrative ${target}, une cible do-${target}-subdir
# est définie, la règle de production de cette cible lance le sous-traitement
# de ${target} dans les sous-répertoires énumérés dans SUBDIR.
#
# Les cibles administratives sont marquées par l'attribut `.PHONY'.
#
# À moins qu'une cible ${target}-switch-credentials existe, la cible
# do-${target}-subdir devient un prérequis de ${target}. Ce comportement
# permet l'utilsiation conjointe de ce module de directives avec le module
# `bps.credentials.mk'.
#
# Description des variables
#
# USE_SUBDIR
#
# Drapeau de contrôle de la rediffusion des ordres de production vers les
# sous-dossiers.
#
# La rediffusion des ordres de production vers les sous-dossiers a lieu
# lorsque la variable USE_SUBDIR est positionnée à `yes'. En l'absence
# d'initialisation explicite, lorsque SUBDIR est initialisée la variable
# USE_SUBDIR reçoit la valeur implicite `yes'.
# SUBDIR
#
# Liste des sous-dossiers vers lesquels les ordres de production sont
# rediffusés.
# _SUBDIR_TARGET
#
# Liste des ordres de production devant être rediffusés.
#
# Les ordres de production énumérés par la variable _MAKE_USERTARGET
# (bps.usertarget.mk) sont automatiquement ajoutés à cette variable.
# _SUBDIR_EXPORT
#
# Liste des variables de Make à transmettre aux sous-processus
### IMPLÉMENTATION
.include "bps.init.mk"
.include "bps.credentials.mk"
.if !target(__<bps.subdir.mk>__)
__<bps.subdir.mk>__:
_SUBDIR_TARGET+= ${_MAKE_USERTARGET}
_SUBDIR_PREFIX?=
.if defined(SUBDIR) && !empty(SUBDIR)
USE_SUBDIR?= yes
.else
USE_SUBDIR?= no
.endif
.if ${USE_SUBDIR} == yes
.PHONY: ${SUBDIR}
_SUBDIR: .USE
.for item in ${SUBDIR}
${INFO} "${_SUBDIR_PREFIX}${item} (${.TARGET:S/^do-//:S/-subdir$//})"
@cd ${.CURDIR}/${item}\
&&${MAKE} _SUBDIR_PREFIX=${_SUBDIR_PREFIX}${item}/ ${.TARGET:S/^do-//:S/-subdir$//}
.endfor
${SUBDIR}::
${INFO} "${.TARGET} (all)"
@cd ${.CURDIR}/${.TARGET}; ${MAKE} all
.if defined(_SUBDIR_TARGET)&&!empty(_SUBDIR_TARGET)
.for target in ${_SUBDIR_TARGET}
do-${target}-subdir: _SUBDIR
${NOP}
.if !target(${target}) && !target(${target}-switch-credentials)
${target}: do-${target}-subdir
.endif
.endfor
.endif
.if defined(_SUBDIR_EXPORT)&&!empty(_SUBDIR_EXPORT)
.for export in ${_SUBDIR_EXPORT}
.if empty(.MAKEFLAGS:M${export}=*)&&defined(${export})
.MAKEFLAGS: ${export}="${${export}}"
.endif
.endfor
.endif
.endif # ${USE_SUBDIR} == yes
.endif #!target(__<bps.subdir.mk>__)
.include "bps.clean.mk"
### End of file `bps.subdir.mk'
|