http://code.google.com/p/latex-makefile/downloads/detail?name=latex-makefile-2.2.0.tar.gz
Simply copy the Makefile in the directory on your linux system and type
$makeWorks perfectly for me for creating the pdf from the surce.
$makeWorks perfectly for me for creating the pdf from the surce.
#/usr/bin/bash
for file in *.eps
do
epstopdf $file
done
$ find . -name "*.eps" -exec epstopdf {} \;
$ convert myfile.tif myfile.pdf