From e104e5d2dc232731cc72404d4caa85a2ee11d412 Mon Sep 17 00:00:00 2001 From: jaseg Date: Thu, 2 Apr 2020 15:11:17 +0200 Subject: thesis: Add freq measurement notebook --- ma/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'ma/Makefile') diff --git a/ma/Makefile b/ma/Makefile index f693b51..c3d61b7 100644 --- a/ma/Makefile +++ b/ma/Makefile @@ -1,4 +1,6 @@ +LAB_PATH ?= ../lab-windows + SHELL := bash .ONESHELL: .SHELLFLAGS := -eu -o pipefail -c @@ -8,11 +10,16 @@ MAKEFLAGS += --no-builtin-rules all: safety_reset.pdf +safety_reset.pdf: resources/grid_freq_estimation.pdf + %.pdf: %.tex %.bib pdflatex -shell-escape $< biber $* pdflatex -shell-escape $< +resources/%.pdf: $(LAB_PATH)/%.ipynb + jupyter-nbconvert --to=pdf --output-dir=resources --output=$* --LatexExporter.template_file=resources/nbexport.tplx $^ + .PHONY: clean clean: rm -f safety_reset.aux safety_reset.bbl safety_reset.bcf safety_reset.log safety_reset.blg -- cgit