makefile.in

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

IN
54
字号
SHELL = @SHELL@INSTALL = @INSTALL@CHEETAH = @CHEETAH@prefix = @prefix@exec_prefix = @exec_prefix@bindir = @bindir@libdir = @libdir@sysconfdir = @sysconfdir@pythonlibdir = @pythonlibdir@templatedir = ${pythonlibdir}/nav/web/templateswebroot = @webroot@templates = editdbTemplate.pyfiles = editdb.py editdbSQL.py editTables.py initBox.py .htaccessconffiles = editdb.conf.PHONY: all install install-lib install-bin install-web clean distclean install-confall: $(templates)$(templates): %.py: %.tmpl	$(CHEETAH) compile $<install: install-lib install-web install-confinstall-lib: $(templates)	for file in $(templates); do \	  $(INSTALL) -v -D -m 644 $$file $(DESTDIR)$(templatedir)/$$file || exit 1; \	doneinstall-web:	for file in $(files); do \	  $(INSTALL) -v -D -m 644 $$file $(DESTDIR)$(webroot)/editdb/$$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;                                                  \	doneclean:	rm -f *~	rm -f $(templates)distclean: clean	rm -f Makefile

⌨️ 快捷键说明

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