diff options
Diffstat (limited to 'paper/Makefile')
-rw-r--r-- | paper/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/paper/Makefile b/paper/Makefile index ac1edbb..6802dce 100644 --- a/paper/Makefile +++ b/paper/Makefile @@ -30,6 +30,27 @@ version.tex: ${main_tex}.tex safety-reset-paper.bib resources/%.pdf: $(LAB_PATH)/%.ipynb jupyter-nbconvert --to=pdf --output-dir=resources --output=$* --LatexExporter.template_file=resources/nbexport.tplx $^ +.PHONY: submission +submission: acsac22-15.zip + +acsac22-15.zip: clean + rm -f acsac22-15.zip + mkdir -p submission/pdf + mkdir -p submission/Source + cd submission + cp ../safety-reset-paper.pdf pdf/ + cp ../safety-reset-paper.tex Source/ + cp ../safety-reset-paper.bib Source/ACSAC22-15.bib + cp ../flowchart.pdf Source/ + cp ../freq_meas_spectrum_new.pdf Source/ + cp ../dsss_gold_nbits_overview.pdf Source/ + cp ../dsss_thf_amplitude_5678.pdf Source/ + cp ../chip_duration_sensitivity_6.pdf Source/ + cp ../prototype.jpg Source/ + cp ../prototype_schema.pdf Source/ + zip -r ../acsac22-15.zip * + + .PHONY: clean clean: rm -f ${main_tex}.aux ${main_tex}.bbl ${main_tex}.bcf ${main_tex}.log ${main_tex}.blg |