summaryrefslogtreecommitdiff
path: root/Makefile
blob: 3ec888433f80057570babe6f600506e1f798292a (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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