Initial commit

This commit is contained in:
2023-07-24 21:33:32 -05:00
commit dfaad7aaee
23 changed files with 5288 additions and 0 deletions

View File

@ -0,0 +1,23 @@
PROJECT=$(basename $(wildcard *.gnuplot))
all: $(addsuffix .pdf, $(PROJECT))
define gnuplot2pdf
gnuplot $(1).gnuplot > $(1).tikz.tex
pdflatex -jobname $(1) -file-line-error $(1).tikz.tex
endef
bec_phase.pdf:
$(call gnuplot2pdf, $(basename $@))
clean-aux:
rm -f $(addsuffix .tikz.tex, $(PROJECT))
rm -f *.aux *.log
clean-dat:
rm -f phase_boundary.dat
clean-pdf:
rm -f $(addsuffix .pdf, $(PROJECT))
clean: clean-aux clean-pdf