Makefile 387 B

12345678910111213141516
  1. srcdir=.
  2. top_srcdir=../..
  3. RAW=results.Guile
  4. data.csv: $(RAW)
  5. grep CSVLINE $< | cut -d+ -f3- > $@
  6. # So that we regenerate the graph when the charting library changes.
  7. CHART=$(top_srcdir)/charting.scm $(top_srcdir)/charting/draw.scm
  8. TITLE="Speedups in Guile 3: Microbenchmarks"
  9. all.png: data.csv $(CHART) perf-chart.scm
  10. ../../env guile $(srcdir)/perf-chart.scm $(TITLE) $@ data.csv