📄 makefile.am
字号:
## Process this file with automake to produce Makefile.in -*-Makefile-*-dist_man_MANS = chgrp.1 chmod.1 chown.1 cp.1 dir.1 dd.1 df.1 dircolors.1 \ du.1 install.1 link.1 ln.1 ls.1 mkdir.1 mkfifo.1 mknod.1 mv.1 rm.1 rmdir.1 \ shred.1 stat.1 sync.1 touch.1 unlink.1 vdir.1man_aux = $(dist_man_MANS:.1=.x)EXTRA_DIST = $(man_aux)MAINTAINERCLEANFILES = $(man_MANS)# Depend on configure.ac to get version number changes.common_dep = $(top_srcdir)/configure.ac# Note that e.g., dir depends on ls.c, since that's where it's --help text is.chgrp.1: $(common_dep) $(srcdir)/chgrp.x ../src/chgrp.cchmod.1: $(common_dep) $(srcdir)/chmod.x ../src/chmod.cchown.1: $(common_dep) $(srcdir)/chown.x ../src/chown.ccp.1: $(common_dep) $(srcdir)/cp.x ../src/cp.cdd.1: $(common_dep) $(srcdir)/dd.x ../src/dd.cdf.1: $(common_dep) $(srcdir)/df.x ../src/df.cdir.1: $(common_dep) $(srcdir)/dir.x ../src/ls.cdircolors.1: $(common_dep) $(srcdir)/dircolors.x ../src/dircolors.cdu.1: $(common_dep) $(srcdir)/du.x ../src/du.cinstall.1: $(common_dep) $(srcdir)/install.x ../src/install.clink.1: $(common_dep) $(srcdir)/link.x ../src/link.cln.1: $(common_dep) $(srcdir)/ln.x ../src/ln.cls.1: $(common_dep) $(srcdir)/ls.x ../src/ls.cmkdir.1: $(common_dep) $(srcdir)/mkdir.x ../src/mkdir.cmkfifo.1: $(common_dep) $(srcdir)/mkfifo.x ../src/mkfifo.cmknod.1: $(common_dep) $(srcdir)/mknod.x ../src/mknod.cmv.1: $(common_dep) $(srcdir)/mv.x ../src/mv.crm.1: $(common_dep) $(srcdir)/rm.x ../src/rm.crmdir.1: $(common_dep) $(srcdir)/rmdir.x ../src/rmdir.cshred.1: $(common_dep) $(srcdir)/shred.x ../src/shred.cstat.1: $(common_dep) $(srcdir)/stat.x ../src/stat.csync.1: $(common_dep) $(srcdir)/sync.x ../src/sync.ctouch.1: $(common_dep) $(srcdir)/touch.x ../src/touch.cunlink.1: $(common_dep) $(srcdir)/unlink.x ../src/unlink.cvdir.1: $(common_dep) $(srcdir)/vdir.x ../src/ls.cSUFFIXES = .x .1# Ensure that help2man runs the ../src/ginstall binary as# `install' when creating install.1.t = $*.tdmapped_name = `echo $*|sed 's/install/ginstall/'`.x.1: @echo "Updating man page $@"; \ mkdir $t; \ ln -s ../../src/$(mapped_name) $t/$*; \ PATH=$t:$$PATH; export PATH; \ $(HELP2MAN) \ --include=$(srcdir)/$*.x \ --output=$@ $*; \ rm -rf $tcheck-local: check-x-vs-1# Ensure that for each .x file in this directory, there is a# corresponding .1 file in the definition of $(dist_man_MANS) above..PHONY: check-x-vs-1check-x-vs-1: t=ls-files.$$$$; \ (cd $(srcdir) && ls -1 *.x) | sed 's/\.x$$//' | sort > $$t; \ echo $(dist_man_MANS) | tr -s ' ' '\012' | sed 's/\.1$$//' \ | sort -u | diff - $$t || { rm $$t; exit 1; }; \ rm $$t
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -