makefile

来自「mpeg4代码,比较具体」· 代码 · 共 43 行

TXT
43
字号
################################################################################ Makefile to generate doc from doxygen comments included in code## NB : It's a dumbass makefile, i'm not proud of it, but it does the job if#      you have doxygen and tetex installed. These 2 programs are commonly#      available on *nix systems and cygwin. Sorry no real Win32 support.#      Custom headers/footers/author/latex packages are used and/or generated#      on the fly.## Author : Edouard Gomez <ed.gomez@free.fr>###############################################################################DATE=${shell date +"%Y-%m-%d"}all: API.PHONY: clean-build clean APIAPI: API.dox foot.inc header.tex	doxygen API.dox && \	cd latex && \	cat doxygen.sty | sed 's/Generated.*Doxygen/XviD API reference/' > tmp.sty && \	mv tmp.sty doxygen.sty && \	make && \	cd .. && \	mv latex/refman.pdf ./xvid-api-ref.pdf && \	cp -R html xvid-api-ref && \	make clean-buildfoot.inc:	cat foot.inc.in | sed 's/@DATE@/${DATE}/' > foot.incheader.tex:	cat header.tex.in | sed 's/@DATE@/${DATE}/' > header.texclean-build:	rm -rf html latex foot.inc header.texclean: clean-build	rm -rf xvid-api-ref.pdf xvid-api-ref

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?