📄 makefile.am
字号:
gnome_hello_helpdir = $(datadir)/gnome/help/gsms/Cgnome_hello_help_DATA = \ gsms.html \ topic.datSGML_FILES = \ gsms.sgml# files that aren't in a binary/data/library target have to be listed here# to be included in the tarball when you 'make dist'EXTRA_DIST = \ topic.dat \ $(SGML_FILES)## The - before the command means to ignore it if it fails. that way## people can still build the software without the docbook toolsall: gsms.html: gsms/gsms.html -cp gsms/gsms.html .gsms/gsms.html: $(SGML_FILES) -db2html gsms.sgml## when we make dist, we include the generated HTML so people don't## have to have the docbook toolsdist-hook: mkdir $(distdir)/gsms -cp gsms/*.html gsms/*.css $(distdir)/gsms -cp gsms.html $(distdir)install-data-local: gsms.html $(mkinstalldirs) $(gnome_hello_helpdir)/images -for file in $(srcdir)/gsms/*.html $(srcdir)/gsms/*.css; do \ basefile=`basename $$file`; \ $(INSTALL_DATA) $(srcdir)/$$file $(gnome_hello_helpdir)/$$basefile; \ donegsms.ps: gsms.sgml -db2ps $<gsms.rtf: gsms.sgml -db2rtf $<
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -