PROJECT=$(basename $(wildcard *.gnuplot))

SIMPLESOLV=simplesolv

all: $(addsuffix .pdf, $(PROJECT))

define gnuplot2pdf
	gnuplot $(1).gnuplot > $(1).tikz.tex
	pdflatex -jobname $(1) -file-line-error $(1).tikz.tex
endef

define bigeq_run
endef

energy.dat:
	julia -p 16 $(SIMPLESOLV)/main.jl -p "eq=bigeq;N=12;P=8;J=10;maxiter=100;v_a=1;minlrho=-6;maxlrho=2;nlrho=100" -M anyeq energy_rho > $@
simpleq.dat:
	julia $(SIMPLESOLV)/main.jl -p "eq=simpleq;N=12;P=8;J=10;order=100;maxiter=100;v_a=1;minlrho=-6;nlrho=100;maxlrho=2" -M easyeq energy_rho > $@

DATS=energy.dat simpleq.dat

energy.pdf: $(DATS)
	$(call gnuplot2pdf,$(basename $@))


clean-aux:
	rm -f $(addsuffix .tikz.tex, $(PROJECT))
	rm -f *.aux *.log

clean-dat:
	rm -f $(DATS)

clean-pdf:
	rm -f $(addsuffix .pdf, $(PROJECT))

clean: clean-aux clean-pdf
