makefile.am.svn-base

来自「The Wifidog project is an open source ca」· SVN-BASE 代码 · 共 52 行

SVN-BASE
52
字号
SUBDIRS =docdir = ${prefix}/share/doc/wifidog-@VERSION@EXTRA_DIST = \	doxygen.cfg \	doxygen.cfg.in \	README.developers.txtall:doc: doxygen.cfg	echo "doc: " && pwd && 	echo "distdir: " && echo $(distdir)	rm -rf html/ refman.pdf	$(DOXYGEN) doxygen.cfg#	$(MAKE) -C latex/ #	mv latex/refman.pdf ./refman.pdfdist-hook: doxygen.cfg	echo "dist-hook: " && pwd	cd $(srcdir) && pwd && rm -rf html refman.pdf && $(DOXYGEN) doxygen.cfg	cp -rp html ${distdir}clean-local:	echo "clean-local: " && pwd	rm -rf latex/	rm -f *~	rm -f doxygen.log	rm -f doxygen.cfgmaintainer-clean-local: clean-local	echo "maintainer-clean-local: " && pwd	rm -rf html refman.pdfinstall-data-hook:	$(mkinstalldirs) $(DESTDIR)$(docdir)	mkdir -p html #Workaround to allow libofx-cvs user to install without doc.	cp -rp html $(DESTDIR)$(docdir)uninstall-hook:	chmod +w -R $(DESTDIR)${docdir}/html #Why chmod is needed is a mystery	rm -rf $(DESTDIR)${docdir}/html## We borrow guile's convention and use @-...-@ as the substitution## brackets here, instead of the usual @...@.  This prevents autoconf## from substituting the values directly into the left-hand sides of## the sed substitutions.doxygen.cfg: doxygen.cfg.in Makefile	rm -f $@.tmp	sed < $< > $@.tmp \            -e 's:@-top_srcdir-@:${top_srcdir}:g'	mv $@.tmp $@

⌨️ 快捷键说明

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