📄 makefile.in
字号:
#### This is the makefile for statTools##SHELL = @SHELL@INSTALL = @INSTALL@prefix = @prefix@exec_prefix = @exec_prefix@bindir = @bindir@sysconfdir = @sysconfdir@webroot = @webroot@tooldir = @tooldir@docdir = @docdir@crondir = @crondir@binaries = cleanrrds.pl filloiddb.pl makecricketconfig.plconffiles = cricketoids.txt cricket-views.conftool = stats.tool.PHONY: all install install-lib install-bin install-conf install-web clean distclean install-doc install-cronall: $(MAKE) -C sortedStats $@install: install-bin install-conf install-web install-cron install-doc $(MAKE) -C sortedStats $@install-bin: @for file in $(binaries); do \ $(INSTALL) -v -D -m 755 $$file $(DESTDIR)$(bindir)/$$file || exit 1; \ doneinstall-conf: @for file in $(conffiles); do \ target=$(DESTDIR)$(sysconfdir)/$$file; \ if [ -f "$$target" ]; then \ echo Skipping installation of config file $$file; \ else \ $(INSTALL) -v -D -m 644 $$file $$target || exit 1; \ fi; \ doneinstall-web: $(INSTALL) -D -v -m 644 $(tool) $(DESTDIR)$(tooldir)/$(tool)install-doc: documentation=`find cricket -type f -not -path '*/.svn/*' -not -name '*~'`; \ for file in $$documentation; do \ $(INSTALL) -v -D -m 644 $$file $(DESTDIR)$(docdir)/$$file || exit 1; \ doneinstall-cron: $(INSTALL) -D -v -m 644 cricket.cron $(DESTDIR)$(crondir)/cricketclean: rm -f *~ $(MAKE) -C sortedStats $@distclean: clean rm -f Makefile $(MAKE) -C sortedStats $@
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -