- Timestamp:
- Apr 4, 2008, 3:57:54 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/Makefile.am
r1254 r1255 30 30 31 31 # these are supported by automake and *-local will add target to * 32 dvi-local: yat.dvi33 ps-local: yat.ps34 pdf-local: yat.pdf32 dvi-local: $(PACKAGE).dvi 33 ps-local: $(PACKAGE).ps 34 pdf-local: $(PACKAGE).pdf 35 35 36 36 html-local: doxygen.config … … 41 41 @(cat doxygen.config; $(ECHO) GENERATE_LATEX = YES) | doxygen -; 42 42 43 yat.dvi: latex-local43 $(PACKAGE).dvi: latex-local 44 44 cd latex && latex refman.tex && latex refman.tex 45 cp latex/refman.dvi yat.dvi45 cp latex/refman.dvi $(PACKAGE).dvi 46 46 47 yat.ps: yat.dvi48 dvips latex/refman.dvi -o yat.ps47 $(PACKAGE).ps: $(PACKAGE).dvi 48 dvips latex/refman.dvi -o $(PACKAGE).ps 49 49 50 50 51 yat.pdf: latex-local51 $(PACKAGE).pdf: latex-local 52 52 cd latex && $(MAKE) pdf; 53 cp latex/refman.pdf yat.pdf53 cp latex/refman.pdf $(PACKAGE).pdf 54 54 endif 55 55 56 56 mostlyclean-local: 57 rm -f yat.dvi *~57 rm -f $(PACKAGE).dvi *~ 58 58 59 59 clean-local: 60 rm -rf doxygen.config html latex yat.dvi yat.ps yat.pdf 60 rm -rf doxygen.config html latex $(PACKAGE).dvi \ 61 $(PACKAGE).ps $(PACKAGE).pdf 61 62 62 63 FORCE:
Note: See TracChangeset
for help on using the changeset viewer.