Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V1.4, fixes & intro ukit #7

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ jobs:
- name: Build paper
run: |
touch references.bib
touch imgs/*.pdf
make
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ whitepaper.pdf
*.brf
*.out
*.idx
*.lof
*.ps
*.to?
*.diff
Expand Down
14 changes: 13 additions & 1 deletion .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,31 @@ Source: https://github.com/seL4/whitepaper

Files:
imgs/binary.pdf
imgs/camkes.pdf
imgs/binary.svg
imgs/cap.pdf
imgs/cap.svg
imgs/capdl.pdf
imgs/capdl.svg
imgs/chilli.pdf
imgs/deputy.pdf
imgs/deputy.svg
imgs/figs.pptx
imgs/hacms.pdf
imgs/hacms.svg
imgs/hypervisor.pdf
imgs/hypervisor.svg
imgs/kernel.pdf
imgs/kernel.svg
imgs/l4family.pdf
imgs/l4family.svg
imgs/mcs.pdf
imgs/mcs.svg
imgs/microkit.pdf
imgs/microkit.svg
imgs/proofs.pdf
imgs/proofs.svg
imgs/vmm.pdf
imgs/vmm.svg
Copyright: 2020, Data61, CSIRO (ABN 41 687 119 230)
License: CC-BY-SA-4.0

Expand Down
18 changes: 7 additions & 11 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ AS = $(shell which as)
CC = $(shell which gcc)
GnuPlot = gnuplot
Inkscape = $(shell which inkscape)
Svg2Eps = ${Inkscape}
Svg2Pdf = ${Inkscape}
Eps2Pdf = epstopdf --outfile
PdfView = xpdf
Pdf2Ps = pdf2ps
Expand All @@ -49,7 +51,6 @@ Lpr = lpr
mv = mv
awk = awk
R = R
ToGray = convert -colorspace gray

# Use either "report" or "paper", depending on the template.
# To add a further target, simply append the basename of the .tex file here
Expand Down Expand Up @@ -86,7 +87,7 @@ SVG_Sources = $(wildcard imgs/*.svg)
R_Sources = $(wildcard imgs/*.r)
Styles = $(wildcard *.sty) $(wildcard *.cls)
Figures = $(Perf_Sources:.perf=.pdf) $(Dia_Sources:.dia=.pdf) $(Fig_Sources:.fig=.pdf) $(SVG_Sources:.svg=.pdf) $(Gnuplot_Sources:.gnuplot=.pdf) $(R_Sources:.r=.pdf) $(ExtraFigs)
GreyFigs = $(subst .pdf,-gr.pdf,$(subst imgs/,./,$(wildcard imgs/*.pdf)))


Pdf = $(addsuffix .pdf, $(Targets))
Bib = references.bib
Expand All @@ -101,11 +102,6 @@ FORCE: pdf
ps: $(Ps)
pdf: $(Figures) Makefile $(Pdf)
diff_pdf: $(Figures) Makefile $(Diff_Pdf)
grey: $(GreyFigs)
gray: grey

%-gr.pdf: imgs/%.pdf
${ToGray} $< $@

%.pdf: %.perf ./tools/bargraph.pl
@echo $< '->' $@
Expand All @@ -121,13 +117,13 @@ gray: grey

%.eps: %.svg
@echo $< '->' $@
${Q} $(if ${Inkscape},,echo "You need inkscape installed to build $@" >&2; exit 1)
${Q} ${Inkscape} -f $< -D -z -E $@ > /dev/null 2>&1
${Q} $(if ${Svg2Eps},,echo "You need inkscape installed to build $@" >&2; exit 1)
${Q} ${Svg2Eps} $< -D -E -o $@ > /dev/null 2>&1

%.pdf: %.svg
@echo $< '->' $@
${Q} $(if ${Inkscape},,echo "You need inkscape installed to build $@" >&2; exit 1)
${Q} ${Inkscape} -f $< -D -z -A $@ > /dev/null 2>&1
${Q} $(if ${Svg2Pdf},,echo "You need inkscape installed to build $@" >&2; exit 1)
${Q} ${Svg2Pdf} $< -D -o $@ > /dev/null 2>&1

# This target allows you to add figures which have the extension .c_pp that
# correspond to .c sources. Your .c sources can use the lines '/*<*/' and
Expand Down
Binary file modified imgs/binary.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions imgs/binary.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed imgs/camkes.pdf
Binary file not shown.
Binary file modified imgs/cap.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions imgs/cap.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified imgs/capdl.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions imgs/capdl.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified imgs/deputy.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions imgs/deputy.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified imgs/figs.pptx
Binary file not shown.
Binary file modified imgs/hacms.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions imgs/hacms.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified imgs/hypervisor.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions imgs/hypervisor.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading