forked from hardenedlinux/linux-exploit-development-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
18 lines (14 loc) · 336 Bytes
/
Makefile
File metadata and controls
18 lines (14 loc) · 336 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Index = "index"
Tex = ".tex"
Aux = ".aux"
all: compile clean
compile:
xelatex $(Index)$(Tex)
bibtex $(Index)$(Aux)
xelatex $(Index)$(Tex)
xelatex $(Index)$(Tex)
clean:
$(RM) -rf *.log *.aux *.toc *.bbl *.bbg *.blg *.out */*.aux auto
.PHONY:clean_all
clean_all:
$(RM) -rf *.log *.aux *.toc *.bbl *.bbg *.blg *.out */*.aux auto