makefile.in

来自「Network Administration Visualized 网络管理可」· IN 代码 · 共 64 行

IN
64
字号
#### 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 + =
减小字号Ctrl + -
显示快捷键?