This file is indexed.

/usr/share/mk/www.sgml.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
### www.sgml.mk -- Production HTML via SGML

# Author: Michael Grünewald
# Date: Jeu 13 mar 2008 21:58:28 CET
# 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

# Attention: il ne s'agit pas d'un système DOCBOOK!

# WWW = index.html
# SRCS = index.sgml
# SRCS+= head-css.sgml
# SRCS+= head-title.sgml
# SRCS+= body-content.sgml
# SRCS+= body-nav.sgml
#
# WWWDIR = ${WWWBASE}/subdir
#
# .include "www.sgml.mk"



#
# Description des variables
#

# WWW
#
#   Énumère les fichiers à produire à partir des sources SGML
#
#   Chaque terme a sa propre variable SRCS, et la variable SRCS
#   générale y est ajoutée.


# WWWMAIN
#
#    Nom du fichier principal
#
#    Pour produire plusieurs fichiers, il faut utiliser la forme
#    spécialisée de cette variable.


# WWWBASE
#
#   Répertoire racine du document cible (la version installée)
#
#   Lorsque cette variable a une valeur, cette valeur est transmise
#   aux sous-processus MAKE, de cette façon elle peut être utilisée
#   pour définir correctement WWWDIR.

# WWWOWN, WWWGRP, WWWMODE, WWWDIR
#
#   Paramètres de la procédure d'installation
#
#   Ces paramètres sont documentés dans le module bps.files.mk.

# INCLUDE
#
#   Énumère les entités à inclure
#
#   Il s'agit des entités de type paramètre dont la valeur doit être
#   positionnée à INCLUDE.

# DIRS
#
#   Énumère les dossiers de recherche

# CATALOG
#
#   Énumère les catalogues à inclure pour la résolution des entités

.include "bps.init.mk"

.SUFFIXES: .sgml

WWWNORMALIZE?= osgmlnorm -d
WWWINPUT?= ascii
WWWTIDY?= tidy4 -q -${WWWINPUT}

.for variable in DIRS CATALOG INCLUDE
.if defined(${variable})&&!empty(${variable})
.MAKEFLAGS: ${variable}='${${variable}}'
.else
${variable}=
.endif
.endfor

WWWNORMALIZETOOL = ${WWWNORMALIZE}
.for dir in ${DIRS}
WWWNORMALIZETOOL+= -D${dir}
.PATH.sgml: ${dir}
.endfor
.for catalog in ${CATALOG}
WWWNORMALIZETOOL+= -c${catalog}
.endfor
.for include in ${INCLUDE}
WWWNORMALIZETOOL+= -i${include}
.endfor

.for file in ${WWW}
.if defined(WWWMAIN)&&!empty(WWWMAIN)
WWWMAIN.${file:T} = ${WWWMAIN}
.endif
.if !defined(WWWMAIN.${file:T}) && exists(${file:.html=.sgml})
WWWMAIN.${file:T} = ${file:.html=.sgml}
.endif
.if !defined(WWWMAIN.${file:T}) || empty(WWWMAIN.${file:T})
.error "No main file for ${file}"
.endif
SRCS.${file:T}?= ${WWWMAIN.${file:T}}
.if empty(SRCS.${file:T}:M${WWWMAIN.${file:T}})
SRCS.${file:T}+= ${WWWMAIN.${file:T}}
.endif
.endfor

.if defined(SRCS)&!empty(SRCS)
.for file in ${WWW}
SRCS.${file:T}+= ${SRCS}
.endfor
.endif

.for file in ${WWW}
CLEANFILES+= ${file}
.if exists(${file}.pre)
CLEANFILES += ${file}.pre
.endif
${file}: ${SRCS.${file:T}}
	${WWWNORMALIZETOOL} ${WWWMAIN.${file:T}} | ${WWWTIDY} > ${.TARGET}.pre
	${MV} ${.TARGET}.pre ${.TARGET}
.endfor

.include "www.files.mk"

### End of file `www.files.mk'