/usr/share/mk/latex.bibtex.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 | ### latex.bibtex.mk -- Support pour BibTeX
# Author: Michael Grünewald
# Date: Ven 11 jul 2008 22:17:23 CEST
# 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
# USE_BIBTEX = yes
# .include "latex.bibtex.mk"
### DESCRIPTION
# Si USE_BIBTEX vaut yes, les fichiers auxiliaires associés aux
# fichiers objet énumérés par les variables _TEX_DVI, _TEX_PS et
# _TEX_PDF sont traités avec BIBTEX en vue de la production finale du
# document.
#
# L'étape de traitement de la base de donnée prend place entre la
# passe `aux' et la passe `toc' des travaux en plusieurs traitement de
# LaTeX.
# BSTINPUTS
#
# Chemins de recherche pour les styles de bibliographie.
#
# Si la variable BSTINPUTS est définie, celle-ci est exportée vers
# l'environnement de la commande BIBTEX. De plus la variable
# USE_BIBTEX reçoit `yes' pour valeur implicite.
# BIBINPUTS
#
# Chemins de recherche pour les bases de données bibliographiques.
#
# Si la variable BIBINPUTS est définie, celle-ci est exportée vers
# l'environnement de la commande BIBTEX. De plus la variable
# USE_BIBTEX reçoit `yes' pour valeur implicite.
### IMPLÉMENTATION
.if !target(__<latex.bibtex.mk>__)
__<latex.bibtex.mk>__:
BIBTEX?= bibtex
#
# Calcul de l'environnement d'éxécution de la commande BIBTEX
#
_BIBTEX_ENV =
.if defined(BSTINPUTS)
_BIBTEX_ENV+= BSTINPUTS='${BSTINPUTS}'
USE_BIBTEX?= yes
.endif
.if defined(BIBINPUTS)
_BIBTEX_ENV+= BIBINPUTS='${BIBINPUTS}'
USE_BIBTEX?= yes
.endif
.if !empty(_BIBTEX_ENV)
_BIBTEX_CMD = env ${_BIBTEX_ENV} ${BIBTEX}
.else
_BIBTEX_CMD = ${BIBTEX}
.endif
USE_BIBTEX?= no
.if ${USE_BIBTEX} == yes
.for var in _TEX_DVI _TEX_PDF _TEX_PS
.if defined(${var})&&!empty(${var})
.for doc in ${${var}}
${COOKIEPREFIX}${doc:T}.toc: ${COOKIEPREFIX}${doc:T}.bib
${COOKIEPREFIX}${doc:T}.bib: ${COOKIEPREFIX}${doc:T}.aux
${INFO} 'Processing bibliography database information for ${doc:T}'
${_BIBTEX_CMD} ${doc:R}
@${TOUCH} ${.TARGET}
HARDCOOKIEFILES+= ${COOKIEPREFIX}${doc:T}.bib
REALCLEANFILES+= ${doc:R}.bbl
CLEANFILES+= ${doc:R}.blg
.endfor
.endif
.endfor
.endif
.endif # !target(__<latex.bibtex.mk>__)
### End of file `latex.bibtex.mk'
|