view libtommath/pics/makefile @ 958:1bf92da7a2a0

Try without identifying current user Small change that warns the user if the current user cannot be identified rather than aborting. This came in handy when I put dropbear on a dlink that did not have a true user environment. Falling back on the "-l" option and user@ options works just fine as a client. The only implication I found is that the -J option will fail ungracefully without a known own_user.
author iquaba <cooka2011@gmail.com>
date Wed, 06 Aug 2014 08:48:43 -0500
parents eed26cff980b
children
line wrap: on
line source

# makes the images... yeah

default:  pses

design_process.ps: design_process.tif
	tiff2ps -s -e design_process.tif > design_process.ps

sliding_window.ps: sliding_window.tif
	tiff2ps -s -e sliding_window.tif > sliding_window.ps
	
expt_state.ps: expt_state.tif
	tiff2ps -s -e expt_state.tif > expt_state.ps

primality.ps: primality.tif
	tiff2ps -s -e primality.tif > primality.ps

design_process.pdf: design_process.ps
	epstopdf design_process.ps

sliding_window.pdf: sliding_window.ps
	epstopdf sliding_window.ps
	
expt_state.pdf: expt_state.ps
	epstopdf expt_state.ps

primality.pdf: primality.ps
	epstopdf primality.ps


pses: sliding_window.ps expt_state.ps primality.ps design_process.ps
pdfes: sliding_window.pdf expt_state.pdf primality.pdf design_process.pdf

clean:
	rm -rf *.ps *.pdf .xvpics