diff options
author | Ian Jauslin <ian@jauslin.org> | 2020-08-05 02:54:30 -0400 |
---|---|---|
committer | Ian Jauslin <ian@jauslin.org> | 2020-08-05 02:54:30 -0400 |
commit | 647d192435d36d1155adc8f1a3e56197323bd036 (patch) | |
tree | 58ce48c8c49cc092a6254c91f64f7f148b2cf6fc /figs/trajectory.fig/Makefile |
Diffstat (limited to 'figs/trajectory.fig/Makefile')
-rw-r--r-- | figs/trajectory.fig/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/figs/trajectory.fig/Makefile b/figs/trajectory.fig/Makefile new file mode 100644 index 0000000..3af70f0 --- /dev/null +++ b/figs/trajectory.fig/Makefile @@ -0,0 +1,30 @@ +PROJECTNAME=trajectory + +SIMPLEQ=~/Work/Research/2018+bose_gas/cmp/simpleq + +PDFS=$(addsuffix .pdf, $(PROJECTNAME)) +TEXS=trajectory.tikz.tex + +all: $(PDFS) + +$(PDFS): $(TEXS) + pdflatex -jobname $(basename $@) -file-line-error $(patsubst %.pdf, %.tikz.tex, $@) + +trajectory.tikz.tex: + python trajectory.py > $@ + + +install: $(PDFS) + cp $^ $(INSTALLDIR)/ + +clean-aux: + rm -f $(addsuffix .aux, $(PROJECTNAME)) + rm -f $(addsuffix .log, $(PROJECTNAME)) + +clean-dat: + rm -f $(TEXS) + +clean-tex: + rm -f $(PDFS) + +clean: clean-aux clean-tex |