📄 makefile.in
字号:
SHELL = @SHELL@INSTALL = @INSTALL@CHEETAH = @CHEETAH@prefix = @prefix@exec_prefix = @exec_prefix@bindir = @bindir@libdir = @libdir@sysconfdir = @sysconfdir@pythonlibdir = @pythonlibdir@webroot = @webroot@tooldir = @tooldir@top_srcdir = @top_srcdir@config = ipinfo.conftool = ipinfo.tool.PHONY: all install install-lib install-bin install-web install-images clean distclean install-confall: $(MAKE) -C templates $@install: all install-lib install-bin install-web install-conf $(MAKE) -C templates $@install-lib: $(INSTALL) -v -D -m 644 ipinfo/__init__.py \ $(DESTDIR)$(pythonlibdir)/nav/web/ipinfo/__init__.py $(INSTALL) -v -D -m 644 ipinfo/config.py \ $(DESTDIR)$(pythonlibdir)/nav/web/ipinfo/config.pyinstall-bin:install-web: $(INSTALL) -v -D -m 644 .htaccess \ $(DESTDIR)$(webroot)/ipinfo/.htaccess $(INSTALL) -D -v -m 644 $(tool) $(DESTDIR)$(tooldir)/$(tool)install-conf: @for file in $(config); do \ target=$(DESTDIR)$(sysconfdir)/webfront/$$file; \ if [ -f "$$target" ]; then \ echo Skipping installation of config file $$file; \ else \ $(INSTALL) -v -D -m 644 $$file $$target; \ fi \ doneclean: $(MAKE) -C templates $@ @backups=`find . -name '*~'`; \ rm -f $$backupsdistclean: clean $(MAKE) -C templates $@ rm -f Makefile
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -