Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
1234567891011121314 |
- .PHONY: all
- .PRECIOUS: %.tex
-
- all: specification.pdf clean
-
- %.tex: %.reqif
- python3 reqif/scripts/parse.py $<
-
- %.pdf: %.tex
- latexmk -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make $<
-
- clean:
- latexmk -c
- rm -f *~ *.tex
|