Codebase list pycode-browser / 29ea502
copy precompiled PDF file Georges Khaznadar 2 years ago
3 changed file(s) with 14 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
Binary diff not shown
22 ===================================================================
33 --- pycode-browser.orig/pybooksrc/Makefile
44 +++ pycode-browser/pybooksrc/Makefile
5 @@ -16,6 +16,6 @@ install:
5 @@ -4,7 +4,10 @@ DESTDIR=
6 all: mapy.pdf
7
8 clean:
9 - rm -f *~ *.tex *.aux *.log *.pdf *.toc pics/*.eps
10 + rm -f *~ *.tex *.aux *.log *.toc pics/*.eps
11 +
12 +distclean: clean
13 + rm -f *.pdf
14
15 install:
16
17 @@ -16,6 +19,6 @@ install:
618 %.pdf: %.tex
719 pdflatex $<
820 logfile=$$(echo $< | sed 's/tex/log/'); \
1515 %.pdf: %.tex
1616 pdflatex $<
1717 logfile=$$(echo $< | sed 's/tex/log/'); \
18 set -e; while grep -q Rerun $${logfile}; do \
18 while (grep Warning $${logfile}| grep -iq run); do \
1919 pdflatex $<; \
2020 done