📄 makefile.in
字号:
#### Makefile for lib-python##SHELL = @SHELL@INSTALL = @INSTALL@CHEETAH = @CHEETAH@prefix = @prefix@exec_prefix = @exec_prefix@bindir = @bindir@libdir = @libdir@sysconfdir = @sysconfdir@localstatedir=@localstatedir@pythonlibdir = @pythonlibdir@webroot = @webroot@initdir = @initdir@VERSION = @VERSION@pathmodule = src/nav/buildconf.pyconfig = rrdBrowser.conf.PHONY: all install install-lib install-bin clean distcleanall: $(pathmodule)$(pathmodule): Makefile @echo "Generating $(pathmodule) ..." @echo "# This file was generated during NAV build" > $(pathmodule) @echo "prefix=\"$(prefix)\"" >> $(pathmodule) @echo "exec_prefix=\"$(exec_prefix)\"" >> $(pathmodule) @echo "bindir=\"$(bindir)\"" >> $(pathmodule) @echo "libdir=\"$(libdir)\"" >> $(pathmodule) @echo "pythonlibdir=\"$(pythonlibdir)\"" >> $(pathmodule) @echo "sysconfdir=\"$(sysconfdir)\"" >> $(pathmodule) @echo "localstatedir=\"$(localstatedir)\"" >> $(pathmodule) @echo "webroot=\"$(webroot)\"" >> $(pathmodule) @echo "initdir=\"$(initdir)\"" >> $(pathmodule) @echo "VERSION=\"$(VERSION)\"" >> $(pathmodule)install: install-lib install-bin install-confinstall-lib: $(pathmodule) @cd src; \ installable=`find . -name '*.py'`; \ for file in $$installable; do \ $(INSTALL) -v -D -m 644 $$file $(DESTDIR)$(pythonlibdir)/$$file || exit 1; \ doneinstall-bin: cd bin; \ $(INSTALL) -v -D -m 755 hasPrivilege.py $(DESTDIR)$(bindir)/hasPrivilege.pyinstall-conf: for file in $(config); do \ target=$(DESTDIR)$(sysconfdir)/$$file; \ if [ -f "$$target" ]; then \ echo Skipping installation of config file $$file; \ else \ $(INSTALL) -v -D -m 644 $$file $$target; \ fi \ doneclean: backups=`find src -name '*~'`; \ rm -f $$backups rm -f *~ rm -f $(pathmodule)distclean: clean rm -f Makefile
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -