///<summary>A summary...</summary>
Doxygen を使用して文書化したいのと同様のブロックを使用してコメントした .NET C# プロジェクトを作成しました。私は Doxygen をセットアップしました。Doxygen は 100 個の .tex ファイルと Makefile を生成して実行します。
私が理解しているように、Makefile はドキュメントを PDF として生成するための鍵ですが、機能しません。
make -f Makefile
Doxygen LaTeX出力ディレクトリにいるときにターミナルに書き込むことにより、Macを使用してLaTeXおよびDoxygenビットを実行しています。
all: refman.pdf
pdf: refman.pdf
refman.pdf: clean refman.tex
pdflatex refman
makeindex refman.idx
pdflatex refman
latex_count=5 ; \
while egrep -s 'Rerun (LaTeX|to get cross-references right)' refman.log && [ $$latex_count -gt 0 ] ;\
do \
echo "Rerunning latex...." ;\
pdflatex refman ;\
latex_count=`expr $$latex_count - 1` ;\
done
clean:
rm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out *.brf *.blg *.bbl refman.pdf
実行すると、次のメッセージが表示されます。
MacBook-Pro-13:latex sehlstrom$ make
rm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out *.brf *.blg *.bbl refman.pdf
make: *** No rule to make target `refman.tex', needed by `refman.pdf'. Stop.
Makefil を機能させるにはどうすればよいですか?