summaryrefslogtreecommitdiffstats
path: root/37c3/Smartphones_freedom_status_2023/Makefile
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2023-12-23 05:00:27 +0100
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2024-01-09 17:45:40 +0100
commitbe099542b676bd303ab9d9d3edf067f2ca160eb4 (patch)
tree1e5cdcea117a01466e33ee1ad77e329aa2529c8b /37c3/Smartphones_freedom_status_2023/Makefile
parent09e877059c642c5369bf0b3362023847de455027 (diff)
downloadpresentations-be099542b676bd303ab9d9d3edf067f2ca160eb4.tar.gz
presentations-be099542b676bd303ab9d9d3edf067f2ca160eb4.tar.bz2
presentations-be099542b676bd303ab9d9d3edf067f2ca160eb4.zip
37C3: Add work in progress presentation about smartphones freedom status in 2023.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to '37c3/Smartphones_freedom_status_2023/Makefile')
-rw-r--r--37c3/Smartphones_freedom_status_2023/Makefile23
1 files changed, 23 insertions, 0 deletions
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