diff --git a/Makefile b/Makefile index 68fdef6..f00f6e6 100755 --- a/Makefile +++ b/Makefile @@ -21,41 +21,27 @@ pdflatex $< -# jpeg_detail.png: ImageGeneration-full.png -# convert -crop 180x95+150+95 $< $@ -# -# overlay_detail.png: PointOverlay-full.png -# convert -crop 180x95+150+95 $< $@ - otago_growth.pdf: otago_growth.plo - ploticus -eps -croprel 0,0.1,0.6,0 -o $*.eps $< + ploticus -eps -croprel 0,0.2,0.7,0 -o $*.eps $< epstopdf $*.eps rm -f $*.eps +otago_items.pdf: otago_items.plo + ploticus -eps -croprel 0.2,0,0,0 -o $*.eps $< + epstopdf $*.eps + rm -f $*.eps + +growth_comparison.plo: chunk_logstubs chunk_logtics + +clean: + rm -f *.aux *.bbl *.blg *.log *.dvi *.ps OCLC.pdf + + %.pdf: %.plo ploticus -eps -tightcrop -o $*.eps $< epstopdf $*.eps rm -f $*.eps -# data_generation_time.pdf: d_data_generation_time.txt lineplot.plo -# $(call lineplot,$*,$<,'Data Generation Time','Average time to generate data at server (s)',0.001,2000) -# -# page_load_time.pdf: d_page_load_time.txt lineplot.plo -# $(call lineplot,$*,$<,'Map Display Time','Average time to display map at client (s)',0.001,2000) -# -# combined_time.pdf: d_combined_time.txt lineplot.plo -# $(call lineplot,$*,$<,'Combined Page Load Time','Average time to generate data and display map (s)',0.001,2000) -# -# real_memory.pdf: d_real_memory.txt lineplot.plo -# $(call lineplot,$*,$<,'Real Memory Usage','Browser real memory size (MB)',10,1200) -# -# virtual_memory.pdf: d_virtual_memory.txt lineplot.plo -# $(call lineplot,$*,$<,'Virtual Memory Usage','Browser virtual memory size (MB)',10,1200) - -clean: - rm -f *.aux *.bbl *.blg *.log *.dvi *.ps OCLC.pdf - - %.pdf: %.svg inkscape --file=$< --export-text-to-path --without-gui --export-eps=$*.eps ps2eps --ignoreBB --nohires --loose --gsbbox < $*.eps | ps2pdf -dEPSCrop - $@