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

Delta Between Two Patch Sets: stepmake/stepmake/c-rules.make

Issue 557080043: Issue 5568: make build output terse by default (Closed)
Left Patch Set: add ly_progress to centralize formatting Created 4 years, 5 months ago
Right Patch Set: s&r ly_info -> ly_progress Created 4 years, 5 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « stepmake/stepmake/c++-rules.make ('k') | stepmake/stepmake/documentation-rules.make » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 .SUFFIXES: .c .dep .h .l .lo .o .so .y 1 .SUFFIXES: .c .dep .h .l .lo .o .so .y
2 2
3 $(outdir)/%.o: %.c 3 $(outdir)/%.o: %.c
4 » $(call ly_info,Making $(abspath $@) < c) 4 » $(call ly_progress,Making,$@,< c)
5 $(DO_O_DEP) $(CC) -c $(ALL_CFLAGS) -o $@ $< 5 $(DO_O_DEP) $(CC) -c $(ALL_CFLAGS) -o $@ $<
6 6
7 $(outdir)/%.o: $(outdir)/%.c 7 $(outdir)/%.o: $(outdir)/%.c
8 » $(call ly_info,Making $(abspath $@) < c) 8 » $(call ly_progress,Making,$@,< c)
9 $(DO_O_DEP) $(CC) -c $(ALL_CFLAGS) -o $@ $< 9 $(DO_O_DEP) $(CC) -c $(ALL_CFLAGS) -o $@ $<
10 10
11 $(outdir)/%.lo: %.c 11 $(outdir)/%.lo: %.c
12 » $(call ly_info,Making $(abspath $@) < c) 12 » $(call ly_progress,Making,$@,< c)
13 $(DO_LO_DEP) $(CC) -c $(ALL_CFLAGS) $(PIC_FLAGS) -o $@ $< 13 $(DO_LO_DEP) $(CC) -c $(ALL_CFLAGS) $(PIC_FLAGS) -o $@ $<
14 14
15 $(outdir)/%.lo: %.c 15 $(outdir)/%.lo: %.c
16 » $(call ly_info,Making $(abspath $@) < c) 16 » $(call ly_progress,Making,$@,< c)
17 $(DO_LO_DEP) $(CC) -c $(ALL_CFLAGS) $(PIC_FLAGS) -o $@ $< 17 $(DO_LO_DEP) $(CC) -c $(ALL_CFLAGS) $(PIC_FLAGS) -o $@ $<
18 18
19 $(outdir)/%.c $(outdir)/%.h: %.y 19 $(outdir)/%.c $(outdir)/%.h: %.y
20 » $(call ly_info,Making $(abspath $@) < y) 20 » $(call ly_progress,Making,$@,< y)
21 $(BISON) -d -o $(outdir)/$*.c $< 21 $(BISON) -d -o $(outdir)/$*.c $<
22 22
23 $(outdir)/%.c: %.l 23 $(outdir)/%.c: %.l
24 » $(call ly_info,Making $(abspath $@) < l) 24 » $(call ly_progress,Making,$@,< l)
25 $(FLEX) -Cfe -p -p -o$@ $< 25 $(FLEX) -Cfe -p -p -o$@ $<
26 # could be faster: 26 # could be faster:
27 # $(FLEX) -8 -Cf -o$@ $< 27 # $(FLEX) -8 -Cf -o$@ $<
28 28
29 $(outdir)/%.rc.o: $(outdir)/%.rc 29 $(outdir)/%.rc.o: $(outdir)/%.rc
30 » $(call ly_info,Making $(abspath $@) < rc) 30 » $(call ly_progress,Making,$@,< rc)
31 $(WINDRES) $(WINDRES_FLAGS) -o$@ $< 31 $(WINDRES) $(WINDRES_FLAGS) -o$@ $<
LEFTRIGHT

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