📄 makefile.in
字号:
#### 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -