37 lines
972 B
Makefile
37 lines
972 B
Makefile
|
PROJECTNAME=compare_pots
|
||
|
|
||
|
SIMPLEQ=simpleq
|
||
|
|
||
|
DATS=bigeq_tent.dat bigeq_exp.dat
|
||
|
PDFS=$(addsuffix .pdf, $(PROJECTNAME))
|
||
|
TEXS=$(addsuffix .tikz.tex, $(PROJECTNAME))
|
||
|
|
||
|
all: $(PDFS)
|
||
|
|
||
|
$(PDFS): $(DATS)
|
||
|
gnuplot $(patsubst %.pdf, %.gnuplot, $@) > $(patsubst %.pdf, %.tikz.tex, $@)
|
||
|
pdflatex -jobname $(basename $@) -file-line-error $(patsubst %.pdf, %.tikz.tex, $@)
|
||
|
|
||
|
bigeq_tent.dat:
|
||
|
julia -p 8 $(SIMPLEQ)/main.jl -p "N=12;P=8;J=10;maxiter=100;v_a=32;minlrho=-4;nlrho=100;maxlrho=4;eq=bigeq" -U tent -M medeq energy_rho > $@
|
||
|
|
||
|
bigeq_exp.dat:
|
||
|
# rescale rho by beta^3~324.860
|
||
|
julia -p 8 $(SIMPLEQ)/main.jl -p "N=12;P=8;J=10;maxiter=100;v_a=19.1968;minlrho=-6.512;nlrho=100;maxlrho=1.488;eq=bigeq" -M medeq energy_rho > $@
|
||
|
|
||
|
install: $(PDFS)
|
||
|
cp $^ $(INSTALLDIR)/
|
||
|
|
||
|
clean-aux:
|
||
|
rm -f $(addsuffix .tikz.tex, $(PROJECTNAME))
|
||
|
rm -f $(addsuffix .aux, $(PROJECTNAME))
|
||
|
rm -f $(addsuffix .log, $(PROJECTNAME))
|
||
|
|
||
|
clean-dat:
|
||
|
rm -f $(DATS)
|
||
|
|
||
|
clean-tex:
|
||
|
rm -f $(PDFS)
|
||
|
|
||
|
clean: clean-aux clean-tex
|