makefile.in

来自「监控大型网络的软件。能够自动发现拓扑结构」· IN 代码 · 共 62 行

IN
62
字号
#### This is the makefile for statTools##SHELL = @SHELL@INSTALL = @INSTALL@CHEETAH = @CHEETAH@prefix = @prefix@exec_prefix = @exec_prefix@sysconfdir = @sysconfdir@libdir = @libdir@pythonlibdir = @pythonlibdir@templatedir = ${pythonlibdir}/nav/web/templateswebroot = @webroot@conffiles = sortedStats.conftemplates = SortedStatsTemplate.pylibfiles = sortedStats.py.PHONY: all install install-lib install-bin install-conf install-web clean distclean install-doc install-cronall: $(templates)install: install-conf install-lib install-web$(templates): %.py: %.tmpl	$(CHEETAH) compile $<install-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) -v -D -m 644 htaccess $(DESTDIR)$(webroot)/stats/.htaccessinstall-lib: $(templates)	for file in $(templates); do \	  $(INSTALL) -v -D -m 644 $$file $(DESTDIR)$(templatedir)/$$file || exit 1; \	done	for file in $(libfiles); do \	  $(INSTALL) -v -D -m 644 $$file $(DESTDIR)$(pythonlibdir)/nav/web/$$file || exit 1; \	doneclean:	rm -f *~	rm -f $(templates)distclean: clean	rm -f Makefile

⌨️ 快捷键说明

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