tag 415993 +upstream
thanks

David Richfield a écrit :
> I am using the USthesis class (available on CTAN) for typesetting my 
> thesis.  It includes an eps file (the university crest) which is located 
> at ~/texmf/tex/latex/USlogos/UScrest-top.eps because the class is 
> installed in my home directory.
> 
> The project builds fine if I do "latex DRMSc.tex", but when I try "make 
> dvi", I get the following error:
> 
> make[2]: Entering directory `/home/david/davidr/AcademicStuff/p450/thesis'
> make[2]: *** No rule to make target `UScrest-top.eps', needed by `DRMSc.dvi'. 
>  Stop.

  Hi,

  The correct fix will probably involve to use kpsewhich on all LaTeX
depends. In fact, this is trickier because, for graphics, you can modify
the search patch with the \graphicpath{} command in your LaTeX source file...

  For now, I can suggest you a workaround. Try to add these two lines in your
Makefile:
.INTERMEDIATE: UScrest-top.eps
UScrest-top.eps:

The second line tell make not to cry it cannot build `UScrest-top.eps'
The first line tell make not to rebuild your master if UScrest-top.eps
is not there.

  Best regards,
    Vincent

Reply via email to