If you have chapters named xpmt (guessing that's "experiment"?) and, say, thry, anls, conc, or whatever:
xmpt thry anls conc: %: ch-%.pdf
open $<
ch-%.pdf: %.tex
pdflatex --shell-escape --jobname=ch-$* "\includeonly{$*}\input{thesis}"
Or to do it the "proper" way with make variables, I think it'd be something like this:
chapters = xmpt thry anls conc
main = thesis
.PHONY: $(chapters) show
show: $(main).pdf
open $<
$(main).pdf: $(main).tex $(addsuffix .tex,$(chapters))
pdflatex --shell-escape $(main)
$(chapters): %: ch-%.pdf
open $<
ch-%.pdf: %.tex
pdflatex --shell-escape --jobname=ch-$* "\includeonly{$*}\input{$(main)}"
