]> Lady’s Gitweb - Shushe/commit
“Simplify” the restart mechanism using $?
authorLady <redacted>
Sat, 22 Jun 2024 20:06:53 +0000 (16:06 -0400)
committerLady <redacted>
Sat, 22 Jun 2024 20:15:21 +0000 (16:15 -0400)
commit8d2723f7e6f4b69fab2d6dd5062cd731f4f1906e
tree9316b8aa9e817637dd77a9b12cce613147505d27
parent225d2e9c3d8c3abe4816c97206dae0955ace5f44
“Simplify” the restart mechanism using $?

Instead of having two GNUmakefile rules which are present under
different conditions (and which could hypothetically both apply), just
have one and check to see which prerequisites are out·of·date in order
to adjust the behaviour.

In order to prevent unnecessary builds of metadata and parsed files
prior to a type update, wrap the recipes in a check to see if
`$(BUILDDIR)/.update-types` was created over the course of the build.
This needs to happen in the shell, not in Make, because older versions
of Make cache the `$(wildcard)` function. The implementation of
`$(unlesstypeswillupdate)` uses an `if` function instead of a `and`
because the latter seems to trim white·space.

It is no longer an error if the type of a file cannot be determined;
this is required to enable recipe expansion when types are not yet
generated now that the test is happening in the shell. Instead, files
are given a default type of `application/octet-stream`.
GNUmakefile
This page took 0.063378 seconds and 4 git commands to generate.