All checks were successful
Tests / Release [gcc] total: 704, passed: 704
GNU C Compiler (gcc) |Total|New|Outstanding|Fixed|Trend
|:-:|:-:|:-:|:-:|:-:
|0|0|0|0|:clap:
Reference build: <a href="https://jenkins.weaselab.dev/job/weaselab/job/conflict-set/job/main/44//gcc">weaselab » conflict-set » main #44</a>
Tests / Coverage total: 702, passed: 702
weaselab/conflict-set/pipeline/head This commit looks good
10 lines
140 B
Makefile
10 lines
140 B
Makefile
.PHONY: clean
|
|
|
|
all: paper.pdf
|
|
|
|
paper.pdf: paper.tex $(wildcard *.tikz)
|
|
latexmk -pdf
|
|
|
|
clean:
|
|
xargs -I '{}' bash -c "rm -f {}" < .gitignore
|