]> git.llucax.com Git - software/dgc/dgcbench.git/commitdiff
micro: Remove ".c" suffix from plotted files
authorLeandro Lucarella <llucax@gmail.com>
Thu, 27 Aug 2009 00:20:27 +0000 (21:20 -0300)
committerLeandro Lucarella <llucax@gmail.com>
Thu, 27 Aug 2009 00:20:27 +0000 (21:20 -0300)
Originally a ".c" suffix was used to mark files as being related to
*C*ollections. But since both collections and allocations statistics are
now plotted in the same file, there is no point in that distinction (which,
OTOH, is wrong too).

micro/Makefile
micro/plot.gpi [moved from micro/plot-c.gpi with 100% similarity]

index 48b730868b0cdba86a3a243155080532d8649bb9..b234261245695d69b21118801b84568b473b1803 100644 (file)
@@ -19,7 +19,7 @@ stat_c   := $(addprefix $(STAT_DIR)/,$(addsuffix .c.csv,$(sources:.d=)))
 stat_a   := $(addprefix $(STAT_DIR)/,$(addsuffix .a.csv,$(sources:.d=)))
 stat_h   := $(addprefix $(STAT_DIR)/,$(addsuffix .h.csv,$(sources:.d=)))
 stat     := $(stat_c) $(stat_a) $(stat_h)
-graphs_c := $(addprefix $(PLOT_DIR)/,$(addsuffix .c.eps,$(sources:.d=)))
+graphs_c := $(addprefix $(PLOT_DIR)/,$(addsuffix .eps,$(sources:.d=)))
 graphs   := $(graphs_c)
 
 
@@ -82,8 +82,8 @@ plot: $(graphs)
 $(PLOT_DIR)/%.tics: $(STAT_DIR)/%.h.csv tics.awk
        $(P_AWK) awk -F, -f $(lastword $^) $< > $@
 
-$(PLOT_DIR)/%.c.eps: $(STAT_DIR)/%.c.csv $(STAT_DIR)/%.a.csv \
-                       $(STAT_DIR)/%.h.csv $(PLOT_DIR)/%.tics plot-c.gpi
+$(PLOT_DIR)/%.eps: $(STAT_DIR)/%.c.csv $(STAT_DIR)/%.a.csv \
+                       $(STAT_DIR)/%.h.csv $(PLOT_DIR)/%.tics plot.gpi
        $(P_PLOT) sed "s|@@PRG@@|$(*F)|g; s|@@COL@@|$(VERS)|g; \
                        s|@@INC@@|$(word 1,$^)|g; s|@@INA@@|$(word 2,$^)|g; \
                        s|@@INH@@|$(word 3,$^)|g; s|@@OUT@@|$@|g; \
similarity index 100%
rename from micro/plot-c.gpi
rename to micro/plot.gpi