]> Lady’s Gitweb - Shushe/blob - GNUmakefile
Support “expanded” archives
[Shushe] / GNUmakefile
1 # SPDX-FileCopyrightText: 2023, 2024 Lady <https://www.ladys.computer/about/#lady>
2 # SPDX-License-Identifier: MPL-2.0
3
4 SHELL = /bin/sh
5
6 # ━ § BASIC INFORMATION ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
7 override define makefileinfo
8 ╭────────────────────────────╮
9 ╔╡ ⁌ ⛩️📰 书社 ∷ GNUmakefile ╞═════════════════════════════════╗
10 ║╰────────────────────────────╯ ║
11 ╟┬ ¶ Prerequisites ───────────────────────────────────────────┬╢
12 ║│ │║
13 ║│ Requires G·N·U Make, at least version 3.81, a version of │║
14 ║│ uuencode with base64 support, and the various programs │║
15 ║│ offered by libxml2 and libxslt. Beyond this, only programs │║
16 ║│ required by Posix are required, altho there is a chance of │║
17 ║│ version incompatibilities. The full list of program │║
18 ║│ requirements is as follows :— │║
19 ║│ │║
20 ║│ • awk │║
21 ║│ • cat │║
22 ║│ • cksum │║
23 ║│ • cp │║
24 ║│ • date │║
25 ║│ • echo │║
26 ║│ • file │║
27 ║│ • find │║
28 ║│ • grep │║
29 ║│ • git (optional) │║
30 ║│ • ln │║
31 ║│ • ls │║
32 ║│ • mkdir │║
33 ║│ • mv │║
34 ║│ • od │║
35 ║│ • pax (only when generating archives) │║
36 ║│ • printf │║
37 ║│ • rm │║
38 ║│ • sed │║
39 ║│ • sleep │║
40 ║│ • stat │║
41 ║│ • test │║
42 ║│ • touch │║
43 ║│ • tr │║
44 ║│ • uuencode │║
45 ║│ • uudecode │║
46 ║│ • xargs │║
47 ║│ • xmlcatalog (provided by libxml2) │║
48 ║│ • xmllint (provided by libxml2) │║
49 ║│ • xsltproc (provided by libxslt) │║
50 ║│ │║
51 ║│ In all cases, you can supply your own version of any │║
52 ║│ program `program´ by overriding the corresponding variable │║
53 ║│ `PROGRAM´ when calling Make. │║
54 ║╰────────────────────────────────────────────────────────────╯║
55 ╟┬ ¶ Usage ───────────────────────────────────────────────────┬╢
56 ║│ │║
57 ║│ • `make all´ (default): Compile, but do not install, all │║
58 ║│ files. │║
59 ║│ │║
60 ║│ • `make clean´: Remove `BUILDDIR´. │║
61 ║│ │║
62 ║│ • `make gone´: Remove `BUILDDIR´ and installed files. │║
63 ║│ │║
64 ║│ • `make help´: Print this message. │║
65 ║│ │║
66 ║│ • `make install´: Compile all files and install in │║
67 ║│ `DESTDIR´. │║
68 ║│ │║
69 ║│ • `make list´: List all recognized source files and their │║
70 ║│ classification (including media type and dependencies). │║
71 ║│ │║
72 ║│ • `make listout´: List out the destinations of all │║
73 ║│ resulting files (relative to `DESTDIR´), e·g for │║
74 ║│ processing by another script. │║
75 ║│ │║
76 ║│ • `make uninstall´: Remove installed files, but not │║
77 ║│ `BUILDDIR´. │║
78 ║│ │║
79 ║│ Set `VERBOSE=1´ to see the text of commands as they are │║
80 ║│ executed. │║
81 ║│ │║
82 ║│ See `README.markdown´ for a more involved description of │║
83 ║│ the capabilities and configuration of this program. │║
84 ║╰────────────────────────────────────────────────────────────╯║
85 ╟┬ ¶ Copyright & License ─────────────────────────────────────┬╢
86 ║│ │║
87 ║│ Copyright © 2023–2024 Lady [@ Lady’s Computer]. │║
88 ║│ │║
89 ║│ This Source Code Form is subject to the terms of the │║
90 ║│ Mozilla Public License, v 2.0. If a copy of the M·P·L was │║
91 ║│ not distributed with this file, You can obtain one at │║
92 ║│ <http://mozilla.org/MPL/2.0/>. │║
93 ║╰────────────────────────────────────────────────────────────╯║
94 ╚══════════════════════════════════════════════════════════════╝
95 endef
96
97 # ━ § MAKE·FILE SETUP ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
98
99 # Programs needed to run this make·file.
100 #
101 # If these are not installed on your computer, or you need to use a different implementation, you can override the appropriate variable.
102 AWK := awk
103 CAT := cat
104 CKSUM := cksum
105 CP := cp
106 DATE := date
107 ECHO := echo
108 FILE := file
109 FIND := find
110 GIT := git
111 GREP := grep
112 LN := ln
113 LS := ls
114 MKDIR := mkdir
115 MV := mv
116 OD := od
117 PAX := pax
118 PRINTF := printf
119 RM := rm
120 SED := sed
121 SLEEP := sleep
122 STAT := stat
123 TEST := test
124 TOUCH := touch
125 TR := tr
126 UUDECODE := uudecode
127 UUENCODE := uuencode
128 XARGS := xargs
129 XMLCATALOG := xmlcatalog
130 XMLLINT := xmllint
131 XSLTPROC := xsltproc
132
133 # This variable is not used in normal execution.
134 #
135 # In the archiving `MODE´, it provides the X·M·L file from which the archive should be constructed.
136 SRC :=
137
138 # This variable is not used in normal execution.
139 #
140 # In the archiving `MODE´, it provides a user‐friendly name for the archive.
141 NAME :=
142
143 # The directory which contains the source files.
144 #
145 # Multiple directories can be given so long as files with the same name do not exist in each.
146 SRCDIR := sources
147
148 # The directory which contains “includes”:
149 # Files which may be included in other files but for which no final output will be generated.
150 #
151 # Multiple directories can be given so long as files with the same name do not exist in each.
152 #
153 # These can be inside of `SRCDIR´ directories if desired.
154 INCLUDEDIR := sources/includes
155
156 # The directory in which to generate temporary buildfiles.
157 #
158 # This variable is also used by the archiving `MODE´.
159 BUILDDIR := build
160
161 # The directory into which to output files on `make install´.
162 #
163 # This variable is also used by the archiving `MODE´.
164 DESTDIR := public
165
166 # The location of this Makefile (and related ⛩️📰 书社 files), relative to the current working directory.
167 #
168 # By default, this is inferred from the variable `MAKEFILE_LIST´.
169 #
170 # This variable is also used by the archiving `MODE´.
171 THISDIR := $(patsubst %/,%,$(dir $(lastword $(MAKEFILE_LIST))))
172
173 # Configuration of `find´.
174 #
175 # By default, `find´ will ignore files which begin with a period and those which are likely to cause problems for `make´.
176 EXTRAFINDRULES :=
177 EXTRAFINDINCLUDERULES :=
178 FINDRULES := ! '(' '(' -name '[.-]*' -o -name '*[][*?:|$$%\#\\; ]*' -o -name '*"{*' -o -name '*}"*' -o -name '*[)]' ')' -a -prune ')'$(if $(EXTRAFINDRULES), -a $(EXTRAFINDRULES),)
179 FINDINCLUDERULES := $(FINDRULES)$(if $(EXTRAFINDINCLUDERULES), -a $(EXTRAFINDINCLUDERULES),)
180
181 # The list of magic files to use when determining media types.
182 #
183 # Some are provided as part of this repository, but you can add more if you need different media type detection.
184 #
185 # Your computer probably has several already installed at `/usr/share/file/magic´.
186 EXTRAMAGIC :=
187 MAGIC := $(sort $(patsubst ./%,%,$(wildcard $(THISDIR)/magic/*)) $(EXTRAMAGIC))
188
189 # The list of parsers for plaintext file types.
190 #
191 # Which parsers are provided will influence which kinds of files are recognized as plaintext.
192 EXTRAPARSERS :=
193 PARSERS := $(sort $(patsubst ./%,%,$(wildcard $(THISDIR)/parsers/*.xslt)) $(EXTRAPARSERS))
194
195 # The list of transforms.
196 EXTRATRANSFORMS :=
197 TRANSFORMS := $(sort $(patsubst ./%,%,$(wildcard $(THISDIR)/transforms/*.xslt)) $(EXTRATRANSFORMS))
198
199 # List of types which should be treated as X·M·L.
200 XMLTYPES := application/xml text/xml
201
202 ifdef GIT
203 ifneq ($(wildcard $(THISDIR)/.git),)
204 # A description of the current git revision of ⛩️📰 书社.
205 THISREV := $(shell cd $(THISDIR); $(GIT) describe 2> /dev/null || $(GIT) rev-parse HEAD 2> /dev/null || true)
206 endif
207
208 ifneq ($(wildcard .git),)
209 # A description of the current git revision of the working directory.
210 SRCREV := $(shell $(GIT) describe 2> /dev/null || $(GIT) rev-parse HEAD 2> /dev/null || true)
211 endif
212 endif
213
214 # The mode in which to run this make·file.
215 # Modes essentially allow for the combination of multiple conceptual make·files into a single source.
216 #
217 # The following modes are available :—
218 #
219 # • ‹ urn:fdc:ladys.computer:20231231:Shu1She4:mode:default ›:
220 # The default mode; typical Shushe behaviours.
221 #
222 # • ‹ urn:fdc:ladys.computer:20231231:Shu1She4:mode:archive ›:
223 # Generates archive files from parse results.
224 #
225 # • ‹ urn:fdc:ladys.computer:20231231:Shu1She4:mode:paged ›:
226 # Generates paginated files from parse results.
227 MODE := urn:fdc:ladys.computer:20231231:Shu1She4:mode:default
228
229 # Set to a non·empty value to print all commands as they run.
230 VERBOSE :=
231
232 # The default target for this makefile.
233 .DEFAULT_GOAL := all
234
235 # ━ § BEGIN SHARED MAKE·FILE CONSTRUCTS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
236
237 # ─ ¶ Non‐Recipe Variable Definitions ─────────────────────────────────
238
239 # A variable with no value, usable when assigning values which contain whitespace.
240 override empty :=
241
242 # A variable which contains a newline, to allow the generation of multiline strings in function calls.
243 override define newline
244
245
246 endef
247
248 # A variable which contains a single space.
249 override space := $(empty) $(empty)
250
251 # A variable which contains a single comma.
252 override comma := ,
253
254 # (callable) Quote the given string for use within shell calls.
255 override quote = '$(subst ','"'"',$1)'
256
257 # Outputs an `@´ to silence rules, unless `VERBOSE´ is nonempty.
258 override silent := $(if $(VERBOSE),,@)
259
260 # (callable) Get the modified time of the provided file.
261 #
262 # This is messy; there is no portable way of using `stat´.
263 #
264 # ☡ This variable creates a subshell every time it is computed.
265 override modtime = $(shell if $(STAT) --version 2> /dev/null | $(GREP) -q GNU; then $(DATE) -u -d "@$$(TZ= $(STAT) -c '%Y' $(call quote,$1))" '+%Y-%m-%dT%H:%M:%SZ'; else TZ= $(STAT) -f '%Sm' -t '%Y-%m-%dT%H:%M:%SZ' $(call quote,$1); fi)
266
267 # ─ ¶ Recipe Variable Definitions ─────────────────────────────────────
268
269 # (callable) Check to see if the given directory exists and create it if not.
270 override ensuredirectory = if $(TEST) ! -d $(call quote,$1); then $(MKDIR) -p $(call quote,$1); fi
271
272 # Quote standard input in such a way that piping it to xargs will result in it being processed as a single argument.
273 #
274 # If standard input ends in a newline, it is stripped; all other newlines are preserved.
275 override xargsquote = $(SED) $(call quote,s/'/'"'"'/g;s/^/'/;s/$$/'/;$$!s/$$/\\/)
276
277 # Quote standard input in such a way that piping it to xargs will result in each line being processed as a single argument.
278 override xargsmultiquote = $(SED) $(call quote,s/'/'"'"'/g;s/^/'/;s/$$/'/)
279
280 # (callable) Test if the provided xpath expression matches the provided document.
281 override xpath = $(XMLLINT) --xpath $(call quote,$1) $(call quote,$2) > /dev/null 2> /dev/null
282
283 # (callable) Extract the value of the text nodes in the provided X·M·L document and print them to `stdout´.
284 override extracttext = $(PRINTF) '%s' '<transform xmlns="http://www.w3.org/1999/XSL/Transform" version="1.0"><output method="text" encoding="UTF-8"/></transform>' | $(XSLTPROC) --nonet --novalid - $(call quote,$1)
285
286 # (callable) List the files in the provided directory which are associated with the provided filename, one per line.
287 override associatedfiles = $(LS) -1 $(call quote,$1) | $(SED) '/.*"{.*}".*/!d;s/^\(.*\)"{.*}"\(.*\)$$/\1\2|&/' | $(GREP) -F -e $(call quote,$2|) | $(SED) 's/^.*|//'
288
289 # (callable) Remove files associated with the provided file.
290 override removeassociatedfiles = ASSOCIATED="$$($(call associatedfiles,$(dir $1),$(notdir $1)) | $(TR) '\n' ' ')"; if $(TEST) -n "$$ASSOCIATED"; then cd $(call quote,$(dir $1)) && $(PRINTF) '%s\n' "$$ASSOCIATED" | $(SED) 's/ \{2,\}/ /g;s/^ //;s/ $$//' | $(TR) ' ' '\n' | $(xargsmultiquote) | $(XARGS) -E '' $(RM); fi
291
292 # (callable) Process the provided transformation result and output the result to the provided location, given the provided relative path.
293 override processresultto = if $(call xpath,/*[local-name()="raw-text" and namespace-uri()="urn:fdc:ladys.computer:20231231:Shu1She4"],$1); then $(call extracttext,$1) > $(call quote,$2); $(call removeassociatedfiles,$2); elif $(call xpath,/*[local-name()="base64-binary" and namespace-uri()="urn:fdc:ladys.computer:20231231:Shu1She4"],$1); then $(call extracttext,$1) | $(TR) -d '\t\n\f\r ' | $(SED) 's/^/begin-base64 644 - /;s/$$/ ====/' | $(TR) '\t' '\n' | $(UUDECODE) -o /dev/stdout > $(call quote,$2); $(call removeassociatedfiles,$2); elif $(call xpath,/*[local-name()="archive" and namespace-uri()="urn:fdc:ladys.computer:20231231:Shu1She4"],$1); then $(MAKE) -f $(call quote,$(abspath $(THISDIR)/GNUmakefile)) $(call quote,$2) NAME=$(call quote,$3) SRC=$(call quote,$1) BUILDDIR=$(call quote,$(BUILDDIR)/archive/$3) DESTDIR=$(call quote,$(patsubst %/,%,$(dir $2))) MODE='urn:fdc:ladys.computer:20231231:Shu1She4:mode:archive'; $(call removeassociatedfiles,$2); elif $(call xpath,//*[local-name()="page" and namespace-uri()="urn:fdc:ladys.computer:20231231:Shu1She4"],$1); then $(MAKE) -f $(call quote,$(abspath $(THISDIR)/GNUmakefile)) $(call quote,$2) NAME=$(call quote,$3) SRC=$(call quote,$1) BUILDDIR=$(call quote,$(BUILDDIR)/paged/$3) DESTDIR=$(call quote,$(patsubst %/,%,$(dir $2))) MODE='urn:fdc:ladys.computer:20231231:Shu1She4:mode:paged'; else $(XMLLINT) --nsclean $(call quote,$1) > $(call quote,$2); $(call removeassociatedfiles,$2); fi
294
295 # ━ § BEGIN DEFAULT MAKE·FILE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
296
297 ifeq ($(MODE),urn:fdc:ladys.computer:20231231:Shu1She4:mode:default)
298
299 # ─ ¶ Non‐Recipe Variable Definitions ─────────────────────────────────
300
301 # (callable) Test to see if the prerequisites provided by the second argument matches the value in the file corresponding to the first argument in `$(BUILDDIR)/lastprereqs´.
302 # If not, save the new value and then add FORCE.
303 # Return them regardless.
304 #
305 # Calling this variable is useful when a given target should be updated whenever its list of prerequisites changes in addition to whenever there is a change to one of its prerequisites.
306 #
307 # ☡ This variable creates at least one subshell every time it is computed.
308 override diffprereqs = $(if $(subst $(shell $(CAT) $(call quote,$(BUILDDIR)/lastprereqs/$1) 2> /dev/null || true),,$2),$2 FORCE$(and $(shell $(call ensuredirectory,$(BUILDDIR)/lastprereqs) && $(PRINTF) '%s\n' $(call quote,$2) > $(BUILDDIR)/lastprereqs/$1),),$2)
309
310 # (callable) Escape special characters for use in sed regular expressions.
311 override sedesc = $(subst /,[/],$(subst $$,\$$,$(subst *,\*,$(subst .,\.,$(subst [,\[,$(subst ^,\^,$(subst \,\\,$1)))))))
312
313 # The command to use for percent‐decoding.
314 override perdeccmd := $(SED) 's/|/%7C/g;s/[\]/%5C/g;s/%[0-9A-Fa-f]\{2\}/|&|/g' | $(TR) '|' '\n' | $(SED) '/^%[0-9A-Fa-f]\{2\}$$/!s/%/|%25|/' | $(TR) '|' '\n' | $(AWK) '$$0!~/%/{printf "%s",$$0}/%/{d="0123456789ABCDEF";v=substr(toupper($$0),2,2);printf "\\%04o",(index(d,substr(v,1,1))-1)*16+index(d,substr(v,2,1))-1}' | $(xargsquote) | $(XARGS) -E '' $(PRINTF) '%b'
315
316 # (callable) Percent‐decode the given strings.
317 #
318 # ☡ This variable creates a subshell every time it is computed.
319 override perdec = $(shell $(PRINTF) '%s\0450A' $(foreach encoded,$1,$(call quote,$(encoded))) | $(perdeccmd))
320
321 # (callable) Percent‐encode the given strings.
322 #
323 # This singly‐encodes u·r·i characters and doubly‐encodes other characters, then calls `perdec´ to decode back to a single encoding.
324 # The encoding assumes the input is a “u·r·i component”; e·g that the resulting string should only contain `pchar´ (but can contain any `sub-delim´).
325 #
326 # It is assumed that the given strings do not contain newlines.
327 #
328 # ☡ This variable creates a subshell every time it is computed.
329 override perenc = $(shell $(PRINTF) '%s\n' $(foreach unencoded,$1,$(call quote,$(unencoded))) | $(OD) -t x1 | $(SED) 's/^[0-9]*//;s/0[Aa]/%&/g;s/2[146-9A-Ea-e]/%&/g;s/3[0-9AaBbDd]/%&/g;s/40/%&/g;s/[46][1-9A-Fa-f]/%&/g;s/[57][0-9Aa]/%&/g;s/5[Ff]/%&/g;s/7[Ee]/%&/g;s/[ ][0-9A-Fa-f]\{2\}/%25&/g' | $(TR) -d ' \n' | $(TR) 'abcdef' 'ABCDEF' | $(perdeccmd))
330
331 # (callable) Percent‐encode each component in the given paths.
332 #
333 # ☡ This variable creates a subshell every time it is computed.
334 override pathenc = $(subst %2F,/,$(call perenc,$1))
335
336 # (overridable) Collect all of the applicable includes from the includes directory.
337 sourceincludes := $(shell $(FIND) $(foreach dir,$(INCLUDEDIR),$(call quote,$(dir))) '(' $(FINDRULES) ')' -a -type f)
338
339 # (overridable) Collect all of the applicable source files from the source directory, removing any which are also includes.
340 sourcefiles := $(filter-out $(sourceincludes),$(shell $(FIND) $(foreach dir,$(SRCDIR),$(call quote,$(dir))) '(' $(FINDRULES) ')' -a -type f))
341
342 # Figure out the file type of each source file and source include.
343 ifneq ($(wildcard $(BUILDDIR)/magic.mgc),)
344 override types := $(shell $(PRINTF) '%s\n' $(call quote,$(sourcefiles) $(sourceincludes)) | $(SED) 's/^ *//;s/ *$$//;s/ {2,}/ /g' | $(TR) ' ' '\n' | $(FILE) -m $(call quote,$(BUILDDIR)/magic.mgc) --mime-type --separator '|' --files-from - | $(SED) 's/| */|/g')
345 endif
346
347 # Get the list of supported plaintext file types from the parser.
348 ifneq ($(wildcard $(BUILDDIR)/parser.xslt),)
349 override plaintexttypes := $(filter-out $(XMLTYPES),$(shell $(XMLLINT) --xpath '/*/*[@name="书社:parsers"]//*[namespace-uri()="http://www.w3.org/1999/xhtml" and local-name()="dd"]/text()' $(call quote,$(BUILDDIR)/parser.xslt)))
350 endif
351
352 # (callable) Get all of the files (source and includes) which have the given types.
353 override filesoftype = $(foreach type,$1,$(patsubst %|$(type),%,$(filter %|$(type),$(types))))
354
355 # Build up collections of various file types.
356 override xmlfiles := $(call filesoftype,$(XMLTYPES))
357 override plaintextfiles := $(filter-out $(xmlfiles),$(call filesoftype,$(plaintexttypes)))
358 override assetfiles := $(filter-out $(xmlfiles) $(plaintextfiles),$(sourcefiles) $(sourceincludes))
359
360 # (callable) Get the types of the given files.
361 override typeoffile = $(patsubst $(foreach file,$1,$(file)|%),%,$(filter $(foreach file,$1,$(file)|%),$(types)))
362
363 # Pair each source magic file with its location in the build directory.
364 override magicpair := $(foreach magicfile,$(MAGIC),$(magicfile)|$(BUILDDIR)/magic/$(notdir $(magicfile)))
365
366 # (callable) Get the source file for the given magic files.
367 override magicsource = $(foreach magicpath,$1,$(patsubst %|$(magicpath),%,$(firstword $(filter %|$(magicpath),$(magicpair)))))
368
369 # (callable) Get the build file for the given magic files.
370 override magicfile = $(foreach file,$1,$(patsubst $(file)|%,%,$(filter $(file)|%,$(magicpair))))
371
372 # (callable) Get the local path for the given source file.
373 override sourcepath = $(firstword $(foreach directory,$(SRCDIR),$(if $(filter $(directory)/%,$1),$(patsubst $(directory)/%,%,$1),)))
374
375 # (callable) Get the local path for the given include.
376 override includepath = $(firstword $(foreach directory,$(INCLUDEDIR),$(if $(filter $(directory)/%,$1),$(patsubst $(directory)/%,%,$1),)))
377
378 # (callable) Get base64 data u·r·i’s for the given files.
379 #
380 # ☡ This variable creates a subshell every time it is computed.
381 override datauri = $(foreach file,$1,data:$(call typeoffile,$(file));base64,$(shell $(UUENCODE) -m $(call quote,$(file)) _ | $(SED) '2,$$!d;$$d' | $(TR) -d ' \n'))
382
383 # Pair each source file and include with its local u·r·i.
384 override sourcelocalpair := $(foreach file,$(sourcefiles) $(sourceincludes),$(file)|about:shushe?$(if $(filter $(file),$(sourceincludes)),include=$(call pathenc,$(call includepath,$(file))),source=$(call pathenc,$(call sourcepath,$(file)))))
385
386 # (callable) Get local uris for the given files.
387 override localuri = $(foreach file,$1,$(patsubst $(file)|%,%,$(filter $(file)|%,$(sourcelocalpair))))
388
389 # (callable) Get the source files for the given local uris.
390 override sourcefile = $(foreach local,$1,$(patsubst %|$(local),%,$(filter %|$(local),$(sourcelocalpair))))
391
392 # Adds a requirement on `$(BUILDDIR)/.update-types´ if the file is present.
393 #
394 # This file is created after a reload due to type changes, and is removed after.
395 # Requiring it ensures that file classifications are up·to·date immediately after the reload.
396 override typeupdates := $(wildcard $(BUILDDIR)/.update-types)
397
398 # Pair each source file and include with its parsed location.
399 override sourceparsedpair := $(foreach file,$(sourcefiles) $(sourceincludes),$(file)|$(BUILDDIR)/$(if $(filter $(file),$(sourceincludes)),includes/$(call includepath,$(file)),sources/$(call sourcepath,$(file))))
400
401 # (callable) Get the location of the transformed X·M·L files for the given source files.
402 override parsed = $(foreach file,$1,$(patsubst $(file)|%,%,$(filter $(file)|%,$(sourceparsedpair))))
403
404 # (callable) Get the source files for the given parsed file.
405 override unparsed = $(foreach file,$1,$(patsubst %|$(file),%,$(filter %|$(file),$(sourceparsedpair))))
406
407 # Pair each parser, transform, or parsed file with its file u·r·i.
408 override fileuripairs := $(join $(patsubst %,%|,$(PARSERS) $(TRANSFORMS) $(call parsed,$(sourcefiles) $(sourceincludes))),$(call pathenc,$(foreach uriable,$(PARSERS) $(TRANSFORMS) $(call parsed,$(sourcefiles) $(sourceincludes)),file://$(abspath $(uriable)))))
409
410 # (callable) Get the file u·r·is for the given parsers, transforms, or parsed files.
411 override fileuri = $(foreach file,$1,$(patsubst $(file)|%,%,$(filter $(file)|%,$(fileuripairs))))
412
413 ifneq ($(wildcard $(BUILDDIR)/dependencies),)
414 # Pair each file with a list of dependencies for it.
415 override dependenciesforfile := $(foreach file,$(filter-out $(assetfiles),$(sourcefiles) $(sourceincludes)),$(file)|$(subst $(space),|,$(shell $(CAT) $(call quote,$(BUILDDIR)/dependencies) | $(SED) $(call quote,/^$(call sedesc,$(call localuri,$(file)))$$/$(comma)/^[^ ]/!d;/^ /!d;s/^ //))))
416
417 # (callable) Get the list of dependency leiris for the given source files.
418 #
419 # Recursive dependencies are marked with a leading `-´.
420 override dependencyuris = $(foreach file,$1,$(subst |, ,$(patsubst $(file)|%,%,$(filter $(file)|%,$(dependenciesforfile)))))
421
422 # (callable) Get the list of recursive dependencies for the given source files.
423 override recursives = $(foreach uri,$(filter -%,$(call dependencyuris,$1)),$(call sourcefile,$(patsubst -%,%,$(uri))))
424
425 # (callable) Get the list of (nonrecursive) dependencies for the given source files.
426 override dependencies = $(foreach uri,$(filter-out -%,$(call dependencyuris,$1)),$(call sourcefile,$(uri)))
427 endif
428
429 # Collect all files with recursive dependencies.
430 override recursivefiles := $(foreach file,$(filter-out $(assetfiles),$(sourcefiles)),$(if $(call recursives,$(file)),$(file),))
431
432 # Collect all files which should be compiled.
433 #
434 # This is all of the non·asset, nonrecursive files.
435 override compilablefiles := $(filter-out $(assetfiles) $(recursivefiles),$(sourcefiles))
436
437 # Collect all files which can be installed.
438 #
439 # This is all of the comilable files and all asset sources.
440 override installablefiles := $(compilablefiles) $(filter $(assetfiles),$(sourcefiles))
441
442 ifneq ($(wildcard $(BUILDDIR)/destinations),)
443 # Get the output of the destination transform.
444 override destinations := $(shell $(CAT) $(BUILDDIR)/destinations)
445
446 # Pair source files and their destinations.
447 override sourcedestinationpair := $(foreach destination,$(destinations),$(call sourcefile,$(firstword $(subst |, ,$(destination))))|$(call perdec,$(subst $(space),|,$(wordlist 2,$(words $(subst |, ,$(destination))),$(subst |, ,$(destination))))))
448
449 # (callable) Get the destination for the given source files.
450 override destination = $(foreach file,$1,$(patsubst $(file)|%,%,$(filter $(file)|%,$(sourcedestinationpair))))
451
452 # Pair each source file with its compiled location.
453 override sourcecompiledpair := $(foreach file,$(sourcefiles),$(file)|$(BUILDDIR)/results/$(call destination,$(file)))
454
455 # (callable) Get the location of the transformed X·M·L files for the given source files.
456 override compiled = $(foreach file,$1,$(patsubst $(file)|%,%,$(filter $(file)|%,$(sourcecompiledpair))))
457
458 # (callable) Get the location of the source files for the given compiled file.
459 override uncompiled = $(foreach file,$1,$(patsubst %|$(file),%,$(filter %|$(file),$(sourcecompiledpair))))
460
461 # (callable) Get the location of the final built files for the given source files.
462 override built = $(foreach file,$1,$(patsubst $(BUILDDIR)/results/%,$(BUILDDIR)/public/%,$(call compiled,$(file))))
463
464 # (callable) Get the location of the source files for the given built files.
465 override unbuilt = $(foreach file,$1,$(call uncompiled,$(patsubst $(BUILDDIR)/public/%,$(BUILDDIR)/results/%,$(file))))
466
467 # (callable) Get the installed locations for the given source files.
468 override installed = $(foreach file,$1,$(DESTDIR)/$(call destination,$(file)))
469 endif
470
471 # ─ ¶ Recipe Variable Definitions ─────────────────────────────────────
472
473 # (callable) Get the identifier for the given parser or transform.
474 override id = $(XMLLINT) --xpath '/*/*[local-name()="id" and namespace-uri()="urn:fdc:ladys.computer:20231231:Shu1She4"]/text()[1]' $(call quote,$1) 2> /dev/null || $(PRINTF) '%s\n' $(call quote,about:shushe?$(or $2,unknown)=$(call pathenc,$(basename $(notdir $1))))
475
476 # (callable) Sanitize and wrap the provided plaintext file in X·M·L, printing to `stdout´.
477 override wrapplaintext = $(TR) '\000\013\014' '\032\011\012' < $(call quote,$1) | $(SED) "$$($(PRINTF) '%b' 's/]]>/]]]]><!\\[CDATA\\[>/g\ns/\0357\0277\0276/�/g\ns/\0357\0277\0277/�/g\n$$!s/\\r$$//g\ns/\\r/\\n/g\n$$!s/\0302\0205$$//g\ns/\0302\0205/\\n/g\ns/\0342\0200\0250/\\n/g\ns/[\0001-\0010]/�/g\ns/[\0016-\0037]/�/g\n1s|^|<?xml version=\0042\0061.0\0042?>\\n<script xmlns=\0042http://www.w3.org/1999/xhtml\0042 type=\0042$(call typeoffile,$1)\0042><![CDATA[|\n$$s|$$|]]></script>|')"
478
479 # (callable) Check if the provided X·M·L file is X·M·L 1.1, and if so, coerce to X·M·L 1.0 as best as possible, printing the result (or the original file contents) to `stdout´.
480 #
481 # The X·M·L declaration will be dropped and character escapes for C0 control codes will be replaced with a literal `U+0091 PRIVATE USE ONE´, which is invalid in X·M·L 1.1, but valid X·M·L 1.0 (making the replacement obvious).
482 #
483 # This isn’t a perfect substitution (it makes some assumptions about the format of the underlying X·M·L), but it should be workable for most sensible, welformed files.
484 override serializexml = $(SED) "$$($(PRINTF) '%b' '/<?xml[ \t]\\{1,\\}version=[\0042\0047]1.1/,$${ s/<?xml[^>]*?>/<!--<?xml version=\00421.1\0042?>-->/\n s/&\0043x0*[1-8BCEFbcef];/\0302\0221/g\n s/&\0043x0*1[0-9A-Fa-f];/\0302\0221/g\n s/&\00430*[1-8];/\0302\0221/g\n s/&\00430*1[124-9];/\0302\0221/g\n s/&\00430*2[0-9];/\0302\0221/g\n s/&\00430*3[01];/\0302\0221/g\n}')" < $(call quote,$1) | $(SED) "$$($(PRINTF) '%b' ':a\n/^\\n*$$/{ $$d\n N\n ba\n}')"
485
486 # ─ ¶ Phony Targets ───────────────────────────────────────────────────
487
488 # Compile all files, or error if any are recursive.
489 all : $(call built,$(recursivefiles) $(installablefiles)) ;
490
491 # Destroy buildfiles.
492 clean :
493 $(if $(BUILDDIR),$(silent)$(RM) -f -R $(call quote,$(BUILDDIR)/),)
494
495 # Destroy build directory and installed files.
496 gone : clean uninstall ;
497
498 # Provide help.
499 help :
500 @$(PRINTF) '%b' '$(subst $(newline),\n,$(makefileinfo))'
501
502 # Install the compiled files into `DESTDIR´, or error if any are recursive.
503 install : $(call installed,$(recursivefiles) $(installablefiles)) ;
504
505 # List all source files and includes and their computed types.
506 list :
507 @$(PRINTF) '%b' $(call quote,$(foreach file,$(sort $(sourcefiles)) $(sort $(sourceincludes)),\0033[1m$(file)\0033[22m|$(call typeoffile,$(file))|[\0033[3m$(if $(filter $(file),$(xmlfiles)),xml,$(if $(filter $(file),$(plaintextfiles)),text,asset))$(if $(filter $(file),$(sourceincludes)),|include,)\0033[23m]$(if $(call dependencies,$(file))$(call recursives,$(file)), $(strip $(foreach recursive,$(call recursives,$(file)),\0033[93;41m•|Recursive|Dependency|\0033[39;49m|$(recursive)) $(foreach dependency,$(call dependencies,$(file)),\0033[2m•|Dependency|\0033[22m|$(dependency))))$(if $(filter $(file),$(sourcefiles)), →|<\0033[4m/$(call destination,$(file))\0033[24m>,) )) | $(TR) ' |' '\n '
508
509 # Lists out the destinations of all resulting files (relative to `DESTDIR´).
510 listout :
511 @$(PRINTF) '⛩️📰 书社 Output: %s\n' $(call quote,$(foreach file,$(sort $(sourcefiles)),$(call destination,$(file))))
512
513 # Destroy installed files.
514 uninstall :
515 $(foreach file,$(installablefiles),$(if $(wildcard $(call installed,$(file))),$(silent)$(PRINTF) '%s\n' $(call quote,Removing </$(patsubst $(DESTDIR)/%,%,$(call installed,$(file)))>…)$(newline)$(silent)$(RM) -f $(call quote,$(call installed,$(file)))$(newline),))
516
517 # Raise an error when attempting to build any files with recursive dependencies.
518 $(call built,$(recursivefiles)) :
519 @$(PRINTF) '%b\n' $(call quote,\0033[93;41mError:\0033[39;49m `$(call unbuilt,$@)´ has recursive dependencies:\n$(subst |, ,$(subst $(space),$(newline),$(foreach recursive,$(call recursives,$(call unbuilt,$@)),•|$(recursive))))) && false
520
521 # Add as a prerequisite to treat the target as tho it were phony.
522 FORCE : ;
523
524 # ─ ¶ Special Targets ─────────────────────────────────────────────────
525
526 # Perform secondary expansion; this enables pattern rules to determine their prerequisites based on the matched pattern.
527 .SECONDEXPANSION : ;
528
529 # Don’t use any implicit rules.
530 .SUFFIXES : ;
531
532 # Phony rules; always consider these out·of·date.
533 .PHONY : FORCE all default clean gone info install list listout uninstall $(call built,$(recursivefiles)) ;
534
535 ifneq ($(typeupdates)$(wildcard $(BUILDDIR)/dependencies)$(wildcard $(BUILDDIR)/destinations),)
536 # Reload this make·file if the dependency graph or output destinations have changed.
537 #
538 # The dependency graph and output destinations are used to set the values of variables in this make·file, so it’s important to ensure that they are actually up·to·date prior to executing any later rules.
539 #
540 # This recipe only exists after types have been updated or when the dependency graph or destinations file already exists.
541 #
542 # ※ There is a chance that generating the dependencies will also update the parsers.
543 $(THISDIR)/GNUmakefile :: $(BUILDDIR)/dependencies $(BUILDDIR)/destinations
544 $(silent)$(TOUCH) $(THISDIR)/GNUmakefile
545 ifeq ($(typeupdates),)
546 @if $(TEST) ! -f $(call quote,$(BUILDDIR)/.update-types); then $(PRINTF) '%b\n' '\0033[1mDependency graph and output destinations updated. Restarting…\0033[22m'; fi
547 else
548 $(silent)$(RM) $(call quote,$(BUILDDIR)/.update-types)
549 @$(PRINTF) '%b\n' '\0033[1mDependency graph and output destinations updated. Restarting…\0033[22m'
550 endif
551 endif
552
553 ifeq ($(typeupdates),)
554 # Reload this make·file if any of the magic files or parsers have changed.
555 #
556 # These are used to classify source files, so if they have changed then the make·file must be reloaded.
557 #
558 # This recipe sleeps for one second to ensure that files built after the restart have a more current time·stamp.
559 $(THISDIR)/GNUmakefile :: $(BUILDDIR)/magic.mgc $(BUILDDIR)/parser.xslt
560 $(silent)$(TOUCH) $(THISDIR)/GNUmakefile
561 $(silent)$(RM) -f $(call quote,$(BUILDDIR)/dependencies) $(call quote,$(BUILDDIR)/destinations)
562 @$(PRINTF) '%b\n' '\0033[1mMagic file or parsers have updated. Restarting…\0033[22m'
563 $(silent)$(SLEEP) 1
564 $(silent)$(TOUCH) $(call quote,$(BUILDDIR)/.update-types)
565 endif
566
567 # ─ ¶ Build Targets ───────────────────────────────────────────────────
568
569 # Create symbolic links from the build directory’s store of magic files to their corresponding sources.
570 $(call magicfile,$(MAGIC)) : $(BUILDDIR)/magic/% : $$(call magicsource,$$@)
571 $(silent)$(call ensuredirectory,$(dir $@))
572 $(silent)$(LN) -sf $(call quote,$(realpath $<)) $(call quote,$@)
573
574 # Generate the compiled magic file from its sources.
575 #
576 # It must be updated if any of the files in the magic directory change.
577 $(BUILDDIR)/magic.mgc : $(call diffprereqs,magic,$(sort $(call magicfile,$(MAGIC))))
578 $(foreach outdated,$(filter-out $^,$(wildcard $(BUILDDIR)/magic/*)),$(silent)$(RM) $(call quote,$(outdated))$(newline))
579 @$(ECHO) "Compiling new magic…"
580 $(silent)$(call ensuredirectory,$(dir $@))
581 $(silent)cd $(call quote,$(BUILDDIR)) && $(FILE) -C -m $(call quote,$(realpath $(BUILDDIR)/magic))
582 $(silent)$(TOUCH) $(call quote,$(BUILDDIR)/.update-types)
583
584 # Generate the main parser.
585 $(BUILDDIR)/parser.catalog : $(call diffprereqs,parsers,$(sort $(PARSERS)))
586 @$(ECHO) "Generating catalog of parsers…"
587 $(silent)$(XMLCATALOG) --create --noout $(call quote,$@)
588 $(foreach parser,$(PARSERS),$(silent){ $(call id,$(parser)); printf '%s\n' $(call quote,$(call fileuri,$(parser))) '--noout' $(call quote,$@); } | $(xargsmultiquote) | $(XARGS) -E '' $(XMLCATALOG) --add uri$(newline))
589 $(BUILDDIR)/parser.xslt : $(BUILDDIR)/parser.catalog $(THISDIR)/lib/catalog2parser.xslt
590 @$(ECHO) "Generating main parser…"
591 $(silent)$(XSLTPROC) --nonet --novalid -o $(call quote,$@) $(call quote,$(THISDIR)/lib/catalog2parser.xslt) $(call quote,$<)
592 $(silent)$(TOUCH) $(call quote,$(BUILDDIR)/.update-types)
593
594 # Parse the files.
595 #
596 # Even plain X·M·L files are parsed, because they may contain X·H·T·M·L `<script>´ elements which contain other kinds of data.
597 # Asset files are turned into H·T·M·L embeds pointing to `data:´ U·R·I’s.
598 $(call parsed,$(sourcefiles) $(sourceincludes)) : % : $$(call unparsed,$$@) $(BUILDDIR)/parser.xslt $(typeupdates)
599 @$(PRINTF) '%s\n' $(call quote,Processing `$<´…)
600 $(silent)$(call ensuredirectory,$(dir $@))
601 $(silent)$(if $(filter $<,$(assetfiles)),$(PRINTF) '%s\n' $(call quote,<object xmlns="http://www.w3.org/1999/xhtml" type="$(call typeoffile,$<)" data="$(call datauri,$<)"/>) > $(call quote,$@),$(if $(filter $<,$(plaintextfiles)),$(call wrapplaintext,$<),$(call serializexml,$<)) | $(XSLTPROC) --nonet --novalid -o $(call quote,$@) --stringparam BUILDTIME $$($(DATE) -u '+%Y-%m-%dT%H:%M:%SZ') --stringparam IDENTIFIER $(call quote,$(call localuri,$<)) --stringparam SRCTIME '$(call modtime,$<)' --stringparam CKSUM $$($(CKSUM) $(call quote,$<) | $(SED) 's/[ ].*//')$(if $(THISREV), --stringparam THISREV $(call quote,$(THISREV)),)$(if $(SRCREV), --stringparam SRCREV $(call quote,$(SRCREV)),) $(call quote,$(BUILDDIR)/parser.xslt) -)
602
603 # Generate a catalog of all parsed files, for use when processing includes.
604 #
605 # This does not depend on actually transforming the files.
606 $(BUILDDIR)/catalog : $(call diffprereqs,sources,$(sort $(sourcefiles) $(sourceincludes))) $(typeupdates)
607 @$(ECHO) "Generating catalog of parsed files…"
608 $(silent)$(XMLCATALOG) --create --noout $(call quote,$@)
609 $(foreach source,$(sourcefiles) $(sourceincludes),$(silent)$(XMLCATALOG) --add uri $(call quote,$(call localuri,$(source))) $(call quote,$(call fileuri,$(call parsed,$(source)))#$(if $(filter $(source),$(assetfiles)),asset,xml)) --noout $(call quote,$@)$(newline))
610
611 # Build a list of dependencies for each parsed file.
612 $(BUILDDIR)/dependencies : $(BUILDDIR)/catalog $(call parsed,$(plaintextfiles) $(xmlfiles)) $(THISDIR)/lib/catalog2dependencies.xslt
613 @$(ECHO) "Identifying dependencies…"
614 $(silent)$(TOUCH) $(call quote,$@)
615 $(silent)$(XSLTPROC) --nonet --novalid -o $(call quote,$@) $(call quote,$(THISDIR)/lib/catalog2dependencies.xslt) $(call quote,$<)
616
617 # Generate a catalog of destinations for files.
618 #
619 # This depends on parsing non·asset source files, but not assets or includes.
620 # It does not require knowing the dependencies.
621 $(BUILDDIR)/destinations : $(BUILDDIR)/catalog $(call parsed,$(filter-out $(assetfiles),$(sourcefiles))) $(THISDIR)/lib/catalog2destinations.xslt
622 @$(ECHO) "Identifying output destinations…"
623 $(silent)$(TOUCH) $(call quote,$@)
624 $(silent)$(XSLTPROC) --nonet --novalid -o $(call quote,$@) $(call quote,$(THISDIR)/lib/catalog2destinations.xslt) $(call quote,$<)
625
626 # Generate the main transform.
627 $(BUILDDIR)/transform.catalog : $(call diffprereqs,transforms,$(sort $(TRANSFORMS)))
628 @$(ECHO) "Generating catalog of transforms…"
629 $(silent)$(XMLCATALOG) --create --noout $(call quote,$@)
630 $(foreach transform,$(TRANSFORMS),$(silent){ $(call id,$(transform)); printf '%s\n' $(call quote,$(call fileuri,$(transform))) '--noout' $(call quote,$@); } | $(xargsmultiquote) | $(XARGS) -E '' $(XMLCATALOG) --add uri$(newline))
631 $(BUILDDIR)/transform.xslt : $(BUILDDIR)/transform.catalog $(THISDIR)/lib/catalog2transform.xslt
632 @$(ECHO) "Generating main transform…"
633 $(silent)$(XSLTPROC) --nonet --novalid -o $(call quote,$@) $(call quote,$(THISDIR)/lib/catalog2transform.xslt) $(call quote,$<)
634
635 # Compile the result files using the dependencies as necessary.
636 $(call compiled,$(compilablefiles)) : $(BUILDDIR)/results/% : $$(call parsed,$$(call uncompiled,$$@)) $(BUILDDIR)/transform.xslt $$(call parsed,$$(call dependencies,$$(call uncompiled,$$@)))
637 @$(PRINTF) '%s\n' $(call quote,Compiling </$*>…)
638 $(silent)$(call ensuredirectory,$(dir $@))
639 $(silent)$(XSLTPROC) --nonet --novalid -o $(call quote,$@) --stringparam CATALOG 'catalog' --stringparam BUILDTIME $$($(DATE) -u '+%Y-%m-%dT%H:%M:%SZ') --stringparam SRCTIME '$(call modtime,$(call uncompiled,$@))' --stringparam IDENTIFIER $(call quote,$(call localuri,$(call uncompiled,$@))) --stringparam PATH $(call quote,/$*) --stringparam CKSUM $$($(CKSUM) $(call quote,$(call uncompiled,$@)) | $(SED) 's/[ ].*//')$(if $(THISREV), --stringparam THISREV $(call quote,$(THISREV)),)$(if $(SRCREV), --stringparam SRCREV $(call quote,$(SRCREV)),) $(call quote,$(BUILDDIR)/transform.xslt) $(call quote,$<)
640
641 # Create the final files from the compiled results (or error in the case of recursive ones).
642 $(call built,$(compilablefiles)) : $(BUILDDIR)/public/% : $(BUILDDIR)/results/%
643 @$(PRINTF) '%s\n' $(call quote,Building </$*>…)
644 $(silent)$(call ensuredirectory,$(dir $@))
645 $(silent)$(call processresultto,$<,$@,$*)
646 $(call built,$(filter $(assetfiles),$(sourcefiles))) : $(BUILDDIR)/public/% : $$(call unbuilt,$$@)
647 @$(PRINTF) '%s\n' $(call quote,Building </$*>…)
648 $(silent)$(call ensuredirectory,$(dir $@))
649 $(silent)$(CP) $(call quote,$<) $(call quote,$@)
650
651 # Install compiled files (or error in the case of recursive ones).
652 $(call installed,$(recursivefiles) $(installablefiles)) : $(DESTDIR)/% : $(BUILDDIR)/public/%
653 @$(PRINTF) '%s\n' $(call quote,Installing </$*>…)
654 $(silent)$(call ensuredirectory,$(dir $@))
655 $(silent)if $(TEST) -d $(call quote,$<); then $(RM) -f -R $(call quote,$@); $(CP) -R $(call quote,$<) $(call quote,$@); else $(CP) $(call quote,$<) $(call quote,$@); fi
656 $(silent)for associated in $$($(call associatedfiles,$(dir $<),$(notdir $<))); do $(PRINTF) '%s\n' "$$associated" | $(SED) 's/^\(.*\)"{\(.*\)}"\(.*\)$$/\1\2\3/' | $(xargsquote) | $(XARGS) -E '' $(PRINTF) '%s%s\n' $(call quote,$(dir $@)) | $(xargsquote) | $(XARGS) -E '' $(CP) $(call quote,$(dir $<))"$$associated"; done
657
658 # ━ § BEGIN ARCHIVE MAKE·FILE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
659
660 else ifeq ($(MODE),urn:fdc:ladys.computer:20231231:Shu1She4:mode:archive)
661
662 # ─ ¶ Non‐Recipe Variable Definitions ─────────────────────────────────
663
664 # Get the list of files in the archive.
665 ifneq ($(wildcard $(BUILDDIR)/index),)
666 override archivefiles := $(patsubst ./extracted/%,%,$(shell $(CAT) $(call quote,$(BUILDDIR)/index)))
667 endif
668
669 # ─ ¶ Recipe Variable Definitions ─────────────────────────────────────
670
671 # ─ ¶ Phony Targets ───────────────────────────────────────────────────
672
673 # ─ ¶ Special Targets ─────────────────────────────────────────────────
674
675 # Reload this make·file if the archive components have changed.
676 $(THISDIR)/GNUmakefile : $(BUILDDIR)/index
677 $(silent)$(TOUCH) $(THISDIR)/GNUmakefile
678 @$(PRINTF) '%b\n' $(call quote,\0033[1mArchive components for </$(NAME)> updated. Restarting…\0033[22m)
679
680 # ─ ¶ Build Targets ───────────────────────────────────────────────────
681
682 # Build the extractor transform for extracting the contents of the archive source file.
683 $(BUILDDIR)/extractor.xslt : $(SRC) $(THISDIR)/lib/archive2extractor.xslt
684 $(silent)$(call ensuredirectory,$(dir $@))
685 $(silent)$(XSLTPROC) --nonet --novalid -o $(call quote,$@) $(call quote,$(THISDIR)/lib/archive2extractor.xslt) $(call quote,$<)
686
687 # Use the extractor transform to extract the archive source file out into its components.
688 #
689 # This target sleeps for 1 second to ensure the resulting index will always be newer than this make·file.
690 $(BUILDDIR)/index : $(BUILDDIR)/extractor.xslt $(SRC)
691 @$(PRINTF) '%s\n' $(call quote,Extracting components for </$(NAME)>…)
692 $(silent)$(SLEEP) 1
693 $(silent)$(XSLTPROC) --nonet --novalid -o $(call quote,$@) --writesubtree $(call quote,$(dir $@)) $(call quote,$<) $(call quote,$(SRC))
694
695 # All archive components are extracted alongside the index.
696 $(foreach file,$(archivefiles),$(BUILDDIR)/extracted/$(file)) : $(BUILDDIR)/index ;
697
698 # Process each extractor component into its final form.
699 $(foreach file,$(archivefiles),$(BUILDDIR)/files/$(file)) : $(BUILDDIR)/files/% : $(BUILDDIR)/extracted/%
700 @$(PRINTF) '%s\n' $(call quote,Building </$(NAME)/$*>…)
701 $(silent)$(call ensuredirectory,$(dir $@))
702 $(silent)$(call processresultto,$<,$@,$*)
703
704 # Archive all components in the file to the destination.
705 #
706 # This is a match‐anything target, with the assumption that this make·file is being called recursively from the default mode.
707 $(DESTDIR)/% : $(SRC) $(foreach file,$(archivefiles),$(BUILDDIR)/files/$(file))
708 @$(PRINTF) '%s\n' $(call quote,Archiving </$(NAME)>…)
709 $(silent)$(call ensuredirectory,$(dir $@))
710 $(silent)cd $(call quote,$(BUILDDIR)/files); if $(call xpath,/*/@*[local-name()="expanded" and namespace-uri()="urn:fdc:ladys.computer:20231231:Shu1She4"],$(abspath $<)); then $(RM) -f -R $(call quote,$(abspath $@)); $(MKDIR) -p $(call quote,$(abspath $@)); $(PRINTF) '%s\n' $(foreach file,$(archivefiles),$(call quote,$(file))) | $(PAX) -r -w $(call quote,$(abspath $@)); else $(PRINTF) '%s\n' $(foreach file,$(archivefiles),$(call quote,$(file))) | $(PAX) -w > $(call quote,$(abspath $@)); fi
711
712 # ━ § BEGIN PAGED MAKE·FILE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
713
714 else ifeq ($(MODE),urn:fdc:ladys.computer:20231231:Shu1She4:mode:paged)
715
716 # ─ ¶ Non‐Recipe Variable Definitions ─────────────────────────────────
717
718 # Get the list of pages.
719 ifneq ($(wildcard $(BUILDDIR)/index),)
720 override pagefiles := $(patsubst ./pages/%,%,$(shell $(CAT) $(call quote,$(BUILDDIR)/index)))
721 endif
722
723 # ─ ¶ Recipe Variable Definitions ─────────────────────────────────────
724
725 # ─ ¶ Phony Targets ───────────────────────────────────────────────────
726
727 # ─ ¶ Special Targets ─────────────────────────────────────────────────
728
729 # Reload this make·file if the pages have changed.
730 $(THISDIR)/GNUmakefile : $(BUILDDIR)/index
731 $(silent)$(TOUCH) $(THISDIR)/GNUmakefile
732 @$(PRINTF) '%b\n' $(call quote,\0033[1mPages for </$(NAME)> updated. Restarting…\0033[22m)
733
734 # ─ ¶ Build Targets ───────────────────────────────────────────────────
735
736 # Build the extractor transform for extracting the pages of the paged source file.
737 $(BUILDDIR)/extractor.xslt : $(SRC) $(THISDIR)/lib/paged2extractor.xslt
738 $(silent)$(call ensuredirectory,$(dir $@))
739 $(silent)$(XSLTPROC) --nonet --novalid -o $(call quote,$@) --stringparam NAME $(call quote,$(call notdir,$<)) $(call quote,$(THISDIR)/lib/paged2extractor.xslt) $(call quote,$<)
740
741 # Use the extractor transform to extract the paged source file out into its pages.
742 #
743 # This target sleeps for 1 second to ensure the resulting index will always be newer than this make·file.
744 $(BUILDDIR)/index : $(BUILDDIR)/extractor.xslt $(SRC)
745 @$(PRINTF) '%s\n' $(call quote,Extracting pages for </$(NAME)>…)
746 $(silent)$(SLEEP) 1
747 $(silent)$(XSLTPROC) --nonet --novalid -o $(call quote,$@) --writesubtree $(call quote,$(dir $@)) $(call quote,$<) $(call quote,$(SRC))
748
749 # All other pages are extracted alongside the base.
750 $(foreach file,$(pagefiles),$(BUILDDIR)/pages/$(file)) : $(BUILDDIR)/index ;
751
752 # Process each page into its final form.
753 $(foreach file,$(pagefiles),$(BUILDDIR)/public/$(file)) : $(BUILDDIR)/public/% : $(BUILDDIR)/pages/%
754 @$(PRINTF) '%s\n' $(call quote,Building page `$(subst }",,$(subst "{,,$*))´ of </$(NAME)>…)
755 $(silent)$(call ensuredirectory,$(dir $@))
756 $(silent)$(call processresultto,$<,$@,$*)
757
758 # Archive all components in the file to the destination.
759 #
760 # This is a match‐anything target, with the assumption that this make·file is being called recursively from the default mode.
761 $(DESTDIR)/% : $(foreach file,$(pagefiles),$(BUILDDIR)/public/$(file))
762 @$(PRINTF) '%s\n' $(call quote,Collecting pages for </$(NAME)>…)
763 $(silent)$(call ensuredirectory,$(dir $@))
764 $(silent)$(call removeassociatedfiles,$@)
765 $(silent)cp $(foreach file,$(pagefiles),$(call quote,$(BUILDDIR)/public/$(file))) $(DESTDIR)
766
767 # ━ § END DEFINED MAKE·FILE MODES ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
768
769 else
770 $(error Unrecognized MODE: $(MODE))
771 endif
This page took 0.089475 seconds and 5 git commands to generate.