diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-09-02 17:54:42 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-09-02 17:54:42 +0300 |
commit | bf852d8bbfc2422994757b4dbce21edc12238eb1 (patch) | |
tree | 0249b04de319df08cf3f18f40f3e944f76982748 /doc/Makefile.am | |
parent | 5e97f97cb7ca9cf459b47d3409da85177e385af2 (diff) | |
download | sciteco-bf852d8bbfc2422994757b4dbce21edc12238eb1.tar.gz |
fixed parallel builds of the woman pages
* There were two rules with independent targets, which could
result in `.woman.tec` files to actually contain plain text.
Practically all parallel builds were affected, among other
things OBS-built packages where tutorial.woman.tec would
usually be broken.
* Now use the `&:` syntax for grouped targets.
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r-- | doc/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 5ef4110..11604a0 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -80,11 +80,11 @@ EXTRA_DIST += tutorial.ms.in CLEANFILES += $(women_DATA) -%.woman %.woman.tec : % sciteco.tmac grosciteco.tes +%.woman %.woman.tec &: % sciteco.tmac grosciteco.tes @GROFF@ @GROFF_FLAGS@ -wall -Z -Tutf8 -t -man -M@srcdir@ -msciteco $< | \ $(SCITECO_FULL) -im -- @srcdir@/grosciteco.tes $@ -tutorial.woman tutorial.woman.tec : tutorial.ms sciteco.tmac grosciteco.tes +tutorial.woman tutorial.woman.tec &: tutorial.ms sciteco.tmac grosciteco.tes @GROFF@ @GROFF_FLAGS@ -wall -Z -Tutf8 -t -ms -M@srcdir@ -msciteco $< | \ $(SCITECO_FULL) -im -- @srcdir@/grosciteco.tes $@ |