Skip to content

Commit

Permalink
Further do generation fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Oblomov committed Jun 13, 2019
1 parent 5a5f614 commit ec5e7b1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
3 changes: 1 addition & 2 deletions docs/user-guide/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ TARGETS=$(patsubst %,%.pdf,$(DIRS))
all: $(TARGETS)

%.pdf:
make -C $(basename $@)
mv $(basename $@)/$@ $@
make -C $(basename $@) && mv $(basename $@)/$@ $@

clean:
for dir in $(DIRS) ; do make -C $$dir clean ; done
Expand Down
2 changes: 1 addition & 1 deletion docs/user-guide/gpusph-setup/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ gpusph-setup.pdf:
# overcome these restrictions somehow (e.g. parse the .tex files to get the
# nme of the bib file could be an idea)

%.pdf: %.tex %.aux %.bbl
%.pdf: %.tex %.aux # %.bbl
$(LTX) $(LTXFLAGS) $< && \
$(LTX) $(LTXFLAGS) $< && \
while ! grep -F 'File `$(subst .tex,.out,$<)'\'' has not changed' $(subst .tex,.log,$<) ; do $(LTX) $(LTXFLAGS) $< ; done
Expand Down
3 changes: 2 additions & 1 deletion docs/user-guide/gpusph-setup/gpusph-setup.tex
Original file line number Diff line number Diff line change
Expand Up @@ -1027,6 +1027,7 @@ \section{Visualizing the results}\label{sec:postprocess}
which is very useful in order to avoid having to repeatedly
perform the same filtering operations.

\bibliography{../gpusph-manual}
% No bib references here
%\bibliography{../gpusph-manual}

\end{document}
2 changes: 1 addition & 1 deletion docs/user-guide/gpusph-theory/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ gpusph-theory.pdf:
# overcome these restrictions somehow (e.g. parse the .tex files to get the
# nme of the bib file could be an idea)

%.pdf: %.tex %.aux %.bbl
%.pdf: %.tex %.aux %.bbl $(EXTRA_DEPS)
$(LTX) $(LTXFLAGS) $< && \
$(LTX) $(LTXFLAGS) $< && \
while ! grep -F 'File `$(subst .tex,.out,$<)'\'' has not changed' $(subst .tex,.log,$<) ; do $(LTX) $(LTXFLAGS) $< ; done
Expand Down

0 comments on commit ec5e7b1

Please sign in to comment.