17jl/Makefile
Ian Jauslin c6fe9f4dfa Update to v0.1:
Fixed: removed discussion on k-nearest neighbor exclusion models which do
not cover the lattice perfectly.

Fixed: extra assumption: particle configurations are determined by their
defects.

Fixed: miscellaneous minor tweaks, formatting and typos.

Added: discussion about Lee-Yang zeros and their relation to the
high-fugacity expansion.

Added: open problem: soft exclusion potentials.

Added: extended bibliography.

Changed: Particles in figures are now always centered on the lattice, not
the dual lattice.

Changed: improved Makefile.
2017-09-09 21:06:49 +00:00

48 lines
928 B
Makefile

PROJECTNAME=Jauslin_Lebowitz_2017
LIBS=$(notdir $(wildcard libs/*))
FIGS=$(notdir $(wildcard figs/*.fig))
PDFS=$(addsuffix .pdf, $(PROJECTNAME))
SYNCTEXS=$(addsuffix .synctex.gz, $(PROJECTNAME))
all: $(PROJECTNAME)
$(PROJECTNAME): $(LIBS) $(FIGS)
pdflatex -file-line-error $@.tex
pdflatex -file-line-error $@.tex
pdflatex -synctex=1 $@.tex
libs: $(LIBS)
$(LIBS):
ln -fs libs/$@ ./
figs: $(FIGS)
$(FIGS):
make -C figs/$@
ln -fs figs/$@/*.pdf ./
clean-aux:
rm -f $(addsuffix .aux, $(PROJECTNAME))
rm -f $(addsuffix .log, $(PROJECTNAME))
rm -f $(addsuffix .out, $(PROJECTNAME))
clean-libs:
rm -f $(LIBS)
clean-figs:
$(foreach fig,$(addprefix figs/, $(FIGS)), make -C $(fig) clean; )
rm -f $(notdir $(wildcard figs/*.fig/*.pdf))
clean-figs-aux:
$(foreach fig,$(addprefix figs/, $(FIGS)), make -C $(fig) clean-aux; )
clean-tex:
rm -f $(PDFS) $(SYNCTEXS)
clean: clean-aux clean-tex clean-libs clean-figs