Blame demo/html/Makefile.canvas

Packit 0986c0
all: html
Packit 0986c0
Packit 0986c0
distclean: clean
Packit 0986c0
clean:
Packit 0986c0
	rm -f *.gnu *.html *.dat *.tmp *.js *.par *.png jsdir
Packit 0986c0
Packit 0986c0
GNUPLOT_LIB = ..
Packit 0986c0
Packit 0986c0
#
Packit 0986c0
# Auto-generation of html demo set.
Packit 0986c0
#
Packit 0986c0
html_3d: binary.html bivariat.html contours.html datastrings.html discrete.html errorbars.html fenceplot.html hidden.html hidden2.html margins.html multimsh.html pm3dcolors.html pm3d.html pm3d_lighting.html pointsize.html random.html rgb_variable.html sampline.html scatter.html singulr.html surface1.html surface2.html azimuth.html transparent_solids.html vector.html world.html world2.html zerror.html
Packit 0986c0
Packit 0986c0
html_2d: airfoil.html approximate.html array.html barchart_art.html bins.html boxplot.html boxclusters.html candlesticks.html canvas_utf8.html circles.html cities.html controls.html custom_key.html dashtypes.html electron.html enhanced_utf8.html fillbetween.html fillcrvs.html fillstyle.html finance.html histograms.html histograms2.html hypertext.html gantt.html index.html iterate.html jitter.html layout.html lines_arrows.html linkedaxes.html monotonic_spline.html multiaxis.html multiplt.html nonlinear1.html nonlinear3.html nokey.html param.html piecewise.html polar.html poldat.html prob2.html prob.html rainbow.html ellipse.html rectangle.html rgba_lines.html rgbalpha.html rotate_labels.html rugplot.html running_avg.html simple.html smooth.html solar_path.html smooth_splines.html spline.html steps.html transparent.html timedat.html ttics.html using.html varcolor.html world.html heatmaps.html stats.html violinplot.html
Packit 0986c0
Packit 0986c0
html: html_2d html_3d
Packit 0986c0
Packit 0986c0
index.html: index.canvas mouseable.js
Packit 0986c0
	cp index.canvas index.html
Packit 0986c0
	cp ../../term/js/*.png .
Packit 0986c0
Packit 0986c0
mouseable.js:
Packit 0986c0
	../../src/gnuplot mouseable.dem
Packit 0986c0
Packit 0986c0
ellipse.html: random.html
Packit 0986c0
Packit 0986c0
rugplot.html: random.html
Packit 0986c0
Packit 0986c0
canvas_utf8.html: canvas_utf8.dem
Packit 0986c0
	gnuplot canvas_utf8.dem
Packit 0986c0
Packit 0986c0
#
Packit 0986c0
# Examples of mousing code
Packit 0986c0
#
Packit 0986c0
smooth_splines.html: jsdir
Packit 0986c0
	./webify_canvas.pl --mouse --grid smooth_splines
Packit 0986c0
Packit 0986c0
cities.html: jsdir
Packit 0986c0
	./webify_canvas.pl --mouse cities
Packit 0986c0
	cat cities.html | sed -e 's/grid_lines/zoom_text/' > xxx
Packit 0986c0
	mv xxx cities.html
Packit 0986c0
Packit 0986c0
# This example needs patching to report the mouse readout in the right units
Packit 0986c0
linkedaxes.html: jsdir
Packit 0986c0
	./webify_canvas.pl --mouse linkedaxes
Packit 0986c0
	patch < linkedaxes.patch
Packit 0986c0
Packit 0986c0
jsdir:
Packit 0986c0
	cp ../../term/js/*.png .
Packit 0986c0
	cp ../../term/js/*.js .
Packit 0986c0
	cp ../../term/js/*.css .
Packit 0986c0
	cp ../../term/js/canvas_help.html .
Packit 0986c0
	cp canvasmath.js canvastext.js
Packit 0986c0
	touch jsdir
Packit 0986c0
Packit 0986c0
%.html: $(GNUPLOT_LIB)/%.dem ./webify_canvas.pl jsdir
Packit 0986c0
	./webify_canvas.pl --mouse $*
Packit 0986c0