Changeset 40022 for trunk/doc/release.2015/Makefile.Common
- Timestamp:
- Apr 30, 2017, 6:23:26 AM (9 years ago)
- File:
-
- 1 edited
-
trunk/doc/release.2015/Makefile.Common (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/release.2015/Makefile.Common
r39974 r40022 14 14 15 15 %.pdf: %.tex 16 $(MY_LATEX) $*.tex 17 18 # $(MY_LATEX) $*.tex; if [ $? -eq 1 ]; then rm $*.pdf; exit 1; fi 19 20 junk: 21 if [ $(DO_BIBTEX) -eq 1 ]; then $(BIBTEX) $*; fi 22 $(MY_LATEX) $*.tex; if [ $? -eq 1 ]; then rm $*.pdf; exit 1; fi 23 if [ $(DO_BIBTEX) -eq 1 ]; then $(MY_LATEX) $*.tex; fi 16 # need to remove the output pdf file if the latex fails or we cannot re-run 17 $(MY_LATEX) $*.tex || (rm $*.pdf; exit 1) 18 if [ $(DO_BIBTEX) -eq 1 ]; then $(BIBTEX) $* || (echo fail; exit 1); fi 19 # need to re-run latex to get the reference right 20 $(MY_LATEX) $*.tex || (rm $*.pdf; exit 1) 21 # if we are running bibtex, we need to re-run latex AGAIN to get the reference right 22 if [ $(DO_BIBTEX) -eq 1 ]; then $(MY_LATEX) $*.tex || (rm $*.pdf; exit 1); fi 24 23 # thumbpdf --modes=dvips $*.pdf 25 24 # $(MY_LATEX) $*.tex
Note:
See TracChangeset
for help on using the changeset viewer.
