summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/pmpostdir
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2022-01-11 22:47:10 +0000
committerKarl Berry <karl@freefriends.org>2022-01-11 22:47:10 +0000
commit4902f0bb638a2a0b2c74cb856c0d0985561f38c8 (patch)
treea3005d1694f9e8d004e3a5c55abf32cbd7234780 /Build/source/texk/web2c/pmpostdir
parenta348646a50088b57d1f9d21d7270d8fa3344b769 (diff)
make tangle-sh, ctangleboot-sh, and make report what they do
git-svn-id: svn://tug.org/texlive/trunk@61575 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/pmpostdir')
-rw-r--r--Build/source/texk/web2c/pmpostdir/ChangeLog4
-rw-r--r--Build/source/texk/web2c/pmpostdir/am/pmpost.am24
2 files changed, 18 insertions, 10 deletions
diff --git a/Build/source/texk/web2c/pmpostdir/ChangeLog b/Build/source/texk/web2c/pmpostdir/ChangeLog
index 0af9fe1dcc2..8ce57298c64 100644
--- a/Build/source/texk/web2c/pmpostdir/ChangeLog
+++ b/Build/source/texk/web2c/pmpostdir/ChangeLog
@@ -1,3 +1,7 @@
+2022-01-10 Karl Berry <karl@freefriends.org>
+
+ * am/pmpost.am: do not silence tangle-sh.
+
2021-04-11 Akira Kakuto <kakuto@w32tex.org>
* pmp.ch: Sync with the version 2.01 mp.w.
diff --git a/Build/source/texk/web2c/pmpostdir/am/pmpost.am b/Build/source/texk/web2c/pmpostdir/am/pmpost.am
index f7e60851bf4..f7dbe7d0bed 100644
--- a/Build/source/texk/web2c/pmpostdir/am/pmpost.am
+++ b/Build/source/texk/web2c/pmpostdir/am/pmpost.am
@@ -1,6 +1,7 @@
+## $Id$
## texk/web2c/pmpostdir/am/pmpost.am: Makefile fragment for pMetaPost.
##
-## Copyright 2018 Karl Berry <tex-live@tug.org>
+## Copyright 2018-2022 Karl Berry <tex-live@tug.org>
## Copyright 2014-2015 Peter Breitenlohner <tex-live@tug.org>
## You may freely use, modify and/or distribute this file.
@@ -64,9 +65,11 @@ pmp_ctangle = $(ctangle_silent)CWEBINPUTS=.:$(srcdir)/pmpostdir $(ctangle)
pmp_ctangle_sh = CWEBINPUTS=.:$(srcdir)/pmpostdir AM_V_P=$(AM_V_P) $(SHELL) ./tangle-sh $@ $(CTANGLE)
## pMetaPost C sources
-nodist_pmpost_SOURCES = $(pmp_c_h) $(pmpmath_c_h) $(pmpmathbinary_c_h) $(pmpmathdecimal_c_h) \
+nodist_pmpost_SOURCES = $(pmp_c_h) $(pmpmath_c_h) $(pmpmathbinary_c_h) \
+ $(pmpmathdecimal_c_h) \
$(pmpmathdouble_c_h) pmpost.c $(pmpstrings_c_h) $(pmpxout_c_h) \
$(ppngout_c_h) $(ppsout_c_h) $(psvgout_c_h) ptfmin.c
+#
pmp_c_h = pmp.c pmplib.h pmpmp.h
pmpmath_c_h = pmpmath.c pmpmath.h
pmpmathbinary_c_h = pmpmathbinary.c pmpmathbinary.h
@@ -136,24 +139,24 @@ ptfmin.c: ctangle$(EXEEXT) ptfmin.w pmpostdir/ptfmin.ch
# Creating several files: need stamp file and two rules with identical recipes
$(pmp_c_h): pmp-tangle
- @$(pmp_ctangle_sh) pmp pmp
+ $(pmp_ctangle_sh) pmp pmp
pmp-tangle: ctangle$(EXEEXT) pmp.w pmpostdir/pmp.ch tangle-sh
- @$(pmp_ctangle_sh) pmp pmp
+ $(pmp_ctangle_sh) pmp pmp
$(pmpxout_c_h): pmpxout-tangle
- @$(pmp_ctangle_sh) pmpxout pmpxout
+ $(pmp_ctangle_sh) pmpxout pmpxout
pmpxout-tangle: ctangle$(EXEEXT) pmpxout.w pmpostdir/pmpxout.ch tangle-sh
- @$(pmp_ctangle_sh) pmpxout pmpxout
+ $(pmp_ctangle_sh) pmpxout pmpxout
$(ppsout_c_h): ppsout-tangle
- @$(pmp_ctangle_sh) ppsout ppsout
+ $(pmp_ctangle_sh) ppsout ppsout
ppsout-tangle: ctangle$(EXEEXT) ppsout.w pmpostdir/ppsout.ch tangle-sh
- @$(pmp_ctangle_sh) ppsout ppsout
+ $(pmp_ctangle_sh) ppsout ppsout
$(psvgout_c_h): psvgout-tangle
- @$(pmp_ctangle_sh) psvgout psvgout
+ $(pmp_ctangle_sh) psvgout psvgout
psvgout-tangle: ctangle$(EXEEXT) psvgout.w pmpostdir/psvgout.ch tangle-sh
- @$(pmp_ctangle_sh) psvgout psvgout
+ $(pmp_ctangle_sh) psvgout psvgout
## pMetaPost CWeb sources
pmpost_web = pmpostdir/pmp.ch pmpostdir/pmpost.ch pmpostdir/pmpxout.ch pmpostdir/ppsout.ch \
@@ -191,3 +194,4 @@ DISTCLEANFILES += pmpsamp.*
## pmpostdir/upmpsamp.test
DISTCLEANFILES += upmpsamp.*
+# (end of pmpost.am)