From be099542b676bd303ab9d9d3edf067f2ca160eb4 Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Sat, 23 Dec 2023 05:00:27 +0100 Subject: 37C3: Add work in progress presentation about smartphones freedom status in 2023. Signed-off-by: Denis 'GNUtoo' Carikli --- 37c3/Smartphones_freedom_status_2023/Makefile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 37c3/Smartphones_freedom_status_2023/Makefile (limited to '37c3/Smartphones_freedom_status_2023/Makefile') diff --git a/37c3/Smartphones_freedom_status_2023/Makefile b/37c3/Smartphones_freedom_status_2023/Makefile new file mode 100644 index 0000000..f0e5831 --- /dev/null +++ b/37c3/Smartphones_freedom_status_2023/Makefile @@ -0,0 +1,23 @@ +TEXFLAGS ?= -halt-on-error -output-format pdf -output-directory output +TITLE = Smartphones_freedom_status_2023 +IMAGES := \ + output/i9300_hardware.png \ + +.PHONY: all clean test medias +all: output/$(TITLE).pdf + +output: + mkdir -p output + +output/$(TITLE).pdf: output $(TITLE).tex $(IMAGES) + pdflatex $(TEXFLAGS) '\providecommand\locale{en}\input{$(TITLE).tex}' + pdflatex $(TEXFLAGS) '\providecommand\locale{en}\input{$(TITLE).tex}' + +output/%.png: dot/%.dot output + dot -T png $< > $@ + +output/i9300_hardware.png: ../../common/images/i9300_hardware.svg + gm convert $< $@ + +clean: + rm -rf output -- cgit v1.2.3