Skip to content
Snippets Groups Projects
Commit 1dc1c331 authored by Raymond Toy's avatar Raymond Toy
Browse files

o Don't delete gif files because some are checked in. (Fix this in a

  better way.)
o Don't infloop when creating cmu-user.pdf by skipping over the
  version message from rerunfilecheck before checking for Rerun
  messages.
parent f0707af1
No related branches found
No related tags found
No related merge requests found
...@@ -62,7 +62,7 @@ all: cmu-user.ps ...@@ -62,7 +62,7 @@ all: cmu-user.ps
%.pdf : %.tex $(FILES) %.pdf : %.tex $(FILES)
$(PDFLATEX) $< $(PDFLATEX) $<
@while ( grep Rerun $*.log > /dev/null ); do \ @while ( grep -v 'Package: rerunfilecheck' $*.log | grep Rerun > /dev/null ); do \
$(PDFLATEX) $<; \ $(PDFLATEX) $<; \
done done
if [ "$<" = "cmu-user.tex" ]; then $(MAKE) index; else $(MAKE) index-letter; fi if [ "$<" = "cmu-user.tex" ]; then $(MAKE) index; else $(MAKE) index-letter; fi
...@@ -102,7 +102,7 @@ cmu-user-letter.tex: cmu-user.tex ...@@ -102,7 +102,7 @@ cmu-user-letter.tex: cmu-user.tex
clean: clean:
rm -f *.log *.bbl *.blg *.ps *.pdf *.aux *.lof *.toc *.gif *.out *.ilg rm -f *.log *.bbl *.blg *.ps *.pdf *.aux *.lof *.toc *.out *.ilg
rm -f *.vdx *.cdx *.tdx *.fdx *.idx *.cnd *.fnd *.tnd *.vnd *.haux rm -f *.vdx *.cdx *.tdx *.fdx *.idx *.cnd *.fnd *.tnd *.vnd *.haux
rm -f *.html *.hcnd *.htnd *.hvnd *.hfnd *.htoc rm -f *.html *.hcnd *.htnd *.hvnd *.hfnd *.htoc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment