diff options
author | Ian Jauslin <ian@jauslin.org> | 2020-08-05 02:10:15 -0400 |
---|---|---|
committer | Ian Jauslin <ian@jauslin.org> | 2020-08-05 02:10:15 -0400 |
commit | a5a98b541f816d41f213790eda9d0fa8054e7716 (patch) | |
tree | ac6d8ed3b9531470b4d078a47e3fcb348845282f /Makefile | |
parent | 372628e8602e724a5cd0a6e211179255f4b75adb (diff) |
Through rewrite, almost from scratch, with a new emphasis on positive x.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -7,7 +7,7 @@ SYNCTEXS=$(addsuffix .synctex.gz, $(PROJECTNAME)) all: $(PROJECTNAME) -$(PROJECTNAME): $(LIBS) $(FIGS) +$(PROJECTNAME): $(LIBS) $(FIGS) $(PROJECTNAME).bbl pdflatex -file-line-error $@.tex pdflatex -file-line-error $@.tex pdflatex -synctex=1 $@.tex @@ -15,6 +15,9 @@ $(PROJECTNAME): $(LIBS) $(FIGS) $(PROJECTNAME).aux: $(LIBS) $(FIGS) pdflatex -file-line-error -draftmode $(PROJECTNAME).tex +$(PROJECTNAME).bbl: $(PROJECTNAME).aux + bibtex $(PROJECTNAME).aux + $(SYNCTEXS): $(LIBS) $(FIGS) pdflatex -synctex=1 $(patsubst %.synctex.gz, %.tex, $@) |