如何阻止“make”运行“clean”?

如何阻止“make”运行“clean”?

有一个像这样的 Makefile:

all: build

build:
        dot2tex -ftikz temporal_dag.dot --figonly > temporal_dag.tex
        latex notes && bibtex notes && latex notes && pdflatex notes

.PHONY: clean

clean:
        rm -v *.aux *.bbl *.blg *.dvi *.fdb_latexmk *.fls *.log *.out *.toc

但包含 clean 似乎会导致“make”失败。我认为 clean 正在运行。

相关内容