Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(118)

Unified Diff: stepmake/stepmake/metafont-rules.make

Issue 557080043: Issue 5568: make build output terse by default (Closed)
Patch Set: s&r ly_info -> ly_progress Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « stepmake/stepmake/library-rules.make ('k') | stepmake/stepmake/metafont-vars.make » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: stepmake/stepmake/metafont-rules.make
diff --git a/stepmake/stepmake/metafont-rules.make b/stepmake/stepmake/metafont-rules.make
index 0e78dd67740a0fc07a7957abc03feef3746b5f1f..1ef3e02f575455b2324cbc32ddf383b2f132c8a6 100644
--- a/stepmake/stepmake/metafont-rules.make
+++ b/stepmake/stepmake/metafont-rules.make
@@ -2,15 +2,17 @@
# we want to see botched results as well.
$(outdir)/%.dvi: %.mf
+ $(call ly_progress,Making,$@,< mf)
-$(DO_MF_DEP) \
MFINPUTS=$(src-dir) \
max_print_line=1000 \
- $(METAFONT) "\scrollmode; input $<;"
+ $(METAFONT) "\scrollmode; input $<;" $(METAFONT_QUIET)
gftodvi $(basename $<)
mv $(basename $<).dvi $(outdir)
rm $(basename $<).*gf
$(outdir)/%.tfm $(outdir)/%.log: %.mf
+ $(call ly_progress,Making,$@,< mf)
$(DO_MF_DEP) \
MFINPUTS=$(src-dir) \
max_print_line=1000 \
@@ -25,6 +27,7 @@ $(outdir)/%.tfm $(outdir)/%.log: %.mf
# the soft link for mf2pt1.mp is for recent mpost versions
# which no longer dump a .mem file
$(outdir)/%.pfb: %.mf $(outdir)/mf2pt1.mem $(outdir)/%.log
+ $(call ly_progress,Making,$@,< mf)
$(DO_MF_DEP) TMP_DIR=`mktemp -d $(outdir)/pfbtemp.$*.XXXXXXXXX` \
&& ( cd $$TMP_DIR \
&& ln -s ../mf2pt1.mem . \
@@ -40,6 +43,7 @@ $(outdir)/%.pfb: %.mf $(outdir)/mf2pt1.mem $(outdir)/%.log
# file to satisfy the dependency (which gets overwritten in case an older
# mpost creates a real mem file)
$(outdir)/mf2pt1.mem: mf2pt1.mp
+ $(call ly_progress,Making,$@,< mp)
cd $(outdir) \
&& touch mf2pt1.mem \
- && mpost -progname=mpost -ini $(top-src-dir)/mf/mf2pt1.mp \\dump
+ && mpost -progname=mpost -ini $(top-src-dir)/mf/mf2pt1.mp \\dump $(METAFONT_QUIET)
« no previous file with comments | « stepmake/stepmake/library-rules.make ('k') | stepmake/stepmake/metafont-vars.make » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b