Changeset 257


Ignore:
Timestamp:
07/11/10 21:20:34 (14 years ago)
Author:
nanardon
Message:
  • add start of the article
Location:
trunk/public-mirror
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/public-mirror/Makefile

    r252 r257  
    55SOURCES= \ 
    66        main.tex \ 
    7         main.handout.tex 
     7        main.handout.tex \ 
     8        article.tex 
    89 
    910INCLUDED = \ 
     
    2324DEPENDENCIES = $(INCLUDED) 
    2425 
    25 all: pdf 
     26all: main.pdf article.pdf article.html 
    2627 
    2728pdf: $(EPS) $(PDF) 
     
    3435        (latex -halt-on-error $< && latex -halt-on-error $<) || (rm $@ && /bin/false) 
    3536 
    36 %.pdf: %.tex $(DEPENDENCIES) $(IMAGES) 
     37main.pdf: main.tex $(DEPENDENCIES) $(IMAGES) main.handout.pdf 
    3738        (pdflatex -halt-on-error $< && pdflatex -halt-on-error $<) || (rm $@ && /bin/false) 
     39 
     40main.handout.pdf: main.handout.tex $(DEPENDENCIES) $(IMAGES) 
     41        (pdflatex -halt-on-error $< && pdflatex -halt-on-error $<) || (rm $@ && /bin/false) 
     42 
     43article.pdf: article.tex $(DEPENDENCIES) $(IMAGES) 
     44        (pdflatex -halt-on-error $< && pdflatex -halt-on-error $<) || (rm $@ && /bin/false) 
     45 
     46article.html: article.tex article.pdf 
     47        hevea $< -exec xxdate.exe -o $@ 
    3848 
    3949%.eps: %.fig 
Note: See TracChangeset for help on using the changeset viewer.