summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..3ec8884
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,29 @@
+# SPDX-License-Identifier: CC0-1.0
+#
+# Copyright (C) 2024 Wojtek Kosior <koszko@koszko.org>
+
+all: incident-response-xz.pdf
+.PHONY: all
+
+.SUFFIXES: .tex .pdf
+
+.tex.pdf:
+ pdflatex --shell-escape $<
+
+GRAPHICS = \
+ xz-logo.png \
+ avatar-larhzu.png \
+ avatar-jia.png \
+ Awesome.svg \
+ timeline.svg \
+ target-audience-distros.svg \
+ autotools.svg \
+ autotools-and-backdoor.svg \
+ openssh-exploitation.svg
+
+incident-response-xz.pdf: $(GRAPHICS) screenshots
+
+clean:
+ rm -rf *.pdf *.toc *.vrb *.snm *.out *.log *.aux *.nav
+ rm -rf svg-inkscape
+.PHONY: clean